-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcacls.log
3111 lines (3106 loc) · 228 KB
/
cacls.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PROCESS OBFUSCATION REPORT FOR cacls
- Generated on 2021-01-03T21:20:53.235892
- Command used : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
- Insertion position: ^
- Char ranges scanned: 0x0001..0xFFFE
:: Option Char Substitution
No alternative commands were found.
:: Character Insertion
The following 3087 commands were found to be working:
0x00AD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x034F : cacls "c:\users\wietze\downloads\test.txt" /gr͏ant administrators:f /edit
0x0378 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0379 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x037F : cacls "c:\users\wietze\downloads\test.txt" /grͿant administrators:f /edit
0x0380 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0381 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0382 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0383 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x038B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x038D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x03A2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0525 : cacls "c:\users\wietze\downloads\test.txt" /grԥant administrators:f /edit
0x0528 : cacls "c:\users\wietze\downloads\test.txt" /grԨant administrators:f /edit
0x0529 : cacls "c:\users\wietze\downloads\test.txt" /grԩant administrators:f /edit
0x052A : cacls "c:\users\wietze\downloads\test.txt" /grԪant administrators:f /edit
0x052B : cacls "c:\users\wietze\downloads\test.txt" /grԫant administrators:f /edit
0x052C : cacls "c:\users\wietze\downloads\test.txt" /grԬant administrators:f /edit
0x052D : cacls "c:\users\wietze\downloads\test.txt" /grԭant administrators:f /edit
0x052E : cacls "c:\users\wietze\downloads\test.txt" /grԮant administrators:f /edit
0x052F : cacls "c:\users\wietze\downloads\test.txt" /grԯant administrators:f /edit
0x0530 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0588 : cacls "c:\users\wietze\downloads\test.txt" /grֈant administrators:f /edit
0x058B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x058C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x058D : cacls "c:\users\wietze\downloads\test.txt" /gr֍ant administrators:f /edit
0x058E : cacls "c:\users\wietze\downloads\test.txt" /gr֎ant administrators:f /edit
0x058F : cacls "c:\users\wietze\downloads\test.txt" /gr֏ant administrators:f /edit
0x0590 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05C9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05CF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05EB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05EC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05ED : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05EE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05EF : cacls "c:\users\wietze\downloads\test.txt" /grׯant administrators:f /edit
0x05F5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05F6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05F7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05F8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05F9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x05FF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0604 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0605 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x061C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x061D : cacls "c:\users\wietze\downloads\test.txt" /gr؝ant administrators:f /edit
0x0640 : cacls "c:\users\wietze\downloads\test.txt" /grـant administrators:f /edit
0x070E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x074B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x074C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x083F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x085C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x085D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x085F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0860 : cacls "c:\users\wietze\downloads\test.txt" /grࡠant administrators:f /edit
0x0861 : cacls "c:\users\wietze\downloads\test.txt" /grࡡant administrators:f /edit
0x0862 : cacls "c:\users\wietze\downloads\test.txt" /grࡢant administrators:f /edit
0x0863 : cacls "c:\users\wietze\downloads\test.txt" /grࡣant administrators:f /edit
0x0864 : cacls "c:\users\wietze\downloads\test.txt" /grࡤant administrators:f /edit
0x0865 : cacls "c:\users\wietze\downloads\test.txt" /grࡥant administrators:f /edit
0x0866 : cacls "c:\users\wietze\downloads\test.txt" /grࡦant administrators:f /edit
0x0867 : cacls "c:\users\wietze\downloads\test.txt" /grࡧant administrators:f /edit
0x0868 : cacls "c:\users\wietze\downloads\test.txt" /grࡨant administrators:f /edit
0x0869 : cacls "c:\users\wietze\downloads\test.txt" /grࡩant administrators:f /edit
0x086A : cacls "c:\users\wietze\downloads\test.txt" /grࡪant administrators:f /edit
0x086B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x086C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x086D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x086E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x086F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0870 : cacls "c:\users\wietze\downloads\test.txt" /grࡰant administrators:f /edit
0x0871 : cacls "c:\users\wietze\downloads\test.txt" /grࡱant administrators:f /edit
0x0872 : cacls "c:\users\wietze\downloads\test.txt" /grࡲant administrators:f /edit
0x0873 : cacls "c:\users\wietze\downloads\test.txt" /grࡳant administrators:f /edit
0x0874 : cacls "c:\users\wietze\downloads\test.txt" /grࡴant administrators:f /edit
0x0875 : cacls "c:\users\wietze\downloads\test.txt" /grࡵant administrators:f /edit
0x0876 : cacls "c:\users\wietze\downloads\test.txt" /grࡶant administrators:f /edit
0x0877 : cacls "c:\users\wietze\downloads\test.txt" /grࡷant administrators:f /edit
0x0878 : cacls "c:\users\wietze\downloads\test.txt" /grࡸant administrators:f /edit
0x0879 : cacls "c:\users\wietze\downloads\test.txt" /grࡹant administrators:f /edit
0x087A : cacls "c:\users\wietze\downloads\test.txt" /grࡺant administrators:f /edit
0x087B : cacls "c:\users\wietze\downloads\test.txt" /grࡻant administrators:f /edit
0x087C : cacls "c:\users\wietze\downloads\test.txt" /grࡼant administrators:f /edit
0x087D : cacls "c:\users\wietze\downloads\test.txt" /grࡽant administrators:f /edit
0x087E : cacls "c:\users\wietze\downloads\test.txt" /grࡾant administrators:f /edit
0x087F : cacls "c:\users\wietze\downloads\test.txt" /grࡿant administrators:f /edit
0x0880 : cacls "c:\users\wietze\downloads\test.txt" /grࢀant administrators:f /edit
0x0881 : cacls "c:\users\wietze\downloads\test.txt" /grࢁant administrators:f /edit
0x0882 : cacls "c:\users\wietze\downloads\test.txt" /grࢂant administrators:f /edit
0x0883 : cacls "c:\users\wietze\downloads\test.txt" /grࢃant administrators:f /edit
0x0884 : cacls "c:\users\wietze\downloads\test.txt" /grࢄant administrators:f /edit
0x0885 : cacls "c:\users\wietze\downloads\test.txt" /grࢅant administrators:f /edit
0x0886 : cacls "c:\users\wietze\downloads\test.txt" /grࢆant administrators:f /edit
0x0887 : cacls "c:\users\wietze\downloads\test.txt" /grࢇant administrators:f /edit
0x088D : cacls "c:\users\wietze\downloads\test.txt" /grࢍant administrators:f /edit
0x088E : cacls "c:\users\wietze\downloads\test.txt" /grࢎant administrators:f /edit
0x088F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0890 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0891 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0892 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0898 : cacls "c:\users\wietze\downloads\test.txt" /gr࢘ant administrators:f /edit
0x0899 : cacls "c:\users\wietze\downloads\test.txt" /gr࢙ant administrators:f /edit
0x089A : cacls "c:\users\wietze\downloads\test.txt" /gr࢚ant administrators:f /edit
0x089B : cacls "c:\users\wietze\downloads\test.txt" /gr࢛ant administrators:f /edit
0x089C : cacls "c:\users\wietze\downloads\test.txt" /gr࢜ant administrators:f /edit
0x089D : cacls "c:\users\wietze\downloads\test.txt" /gr࢝ant administrators:f /edit
0x089E : cacls "c:\users\wietze\downloads\test.txt" /gr࢞ant administrators:f /edit
0x089F : cacls "c:\users\wietze\downloads\test.txt" /gr࢟ant administrators:f /edit
0x08A0 : cacls "c:\users\wietze\downloads\test.txt" /grࢠant administrators:f /edit
0x08A1 : cacls "c:\users\wietze\downloads\test.txt" /grࢡant administrators:f /edit
0x08A2 : cacls "c:\users\wietze\downloads\test.txt" /grࢢant administrators:f /edit
0x08A3 : cacls "c:\users\wietze\downloads\test.txt" /grࢣant administrators:f /edit
0x08A4 : cacls "c:\users\wietze\downloads\test.txt" /grࢤant administrators:f /edit
0x08A5 : cacls "c:\users\wietze\downloads\test.txt" /grࢥant administrators:f /edit
0x08A6 : cacls "c:\users\wietze\downloads\test.txt" /grࢦant administrators:f /edit
0x08A7 : cacls "c:\users\wietze\downloads\test.txt" /grࢧant administrators:f /edit
0x08A8 : cacls "c:\users\wietze\downloads\test.txt" /grࢨant administrators:f /edit
0x08A9 : cacls "c:\users\wietze\downloads\test.txt" /grࢩant administrators:f /edit
0x08AA : cacls "c:\users\wietze\downloads\test.txt" /grࢪant administrators:f /edit
0x08AB : cacls "c:\users\wietze\downloads\test.txt" /grࢫant administrators:f /edit
0x08AC : cacls "c:\users\wietze\downloads\test.txt" /grࢬant administrators:f /edit
0x08AD : cacls "c:\users\wietze\downloads\test.txt" /grࢭant administrators:f /edit
0x08AE : cacls "c:\users\wietze\downloads\test.txt" /grࢮant administrators:f /edit
0x08AF : cacls "c:\users\wietze\downloads\test.txt" /grࢯant administrators:f /edit
0x08B0 : cacls "c:\users\wietze\downloads\test.txt" /grࢰant administrators:f /edit
0x08B1 : cacls "c:\users\wietze\downloads\test.txt" /grࢱant administrators:f /edit
0x08B2 : cacls "c:\users\wietze\downloads\test.txt" /grࢲant administrators:f /edit
0x08B3 : cacls "c:\users\wietze\downloads\test.txt" /grࢳant administrators:f /edit
0x08B4 : cacls "c:\users\wietze\downloads\test.txt" /grࢴant administrators:f /edit
0x08B5 : cacls "c:\users\wietze\downloads\test.txt" /grࢵant administrators:f /edit
0x08B6 : cacls "c:\users\wietze\downloads\test.txt" /grࢶant administrators:f /edit
0x08B7 : cacls "c:\users\wietze\downloads\test.txt" /grࢷant administrators:f /edit
0x08B8 : cacls "c:\users\wietze\downloads\test.txt" /grࢸant administrators:f /edit
0x08B9 : cacls "c:\users\wietze\downloads\test.txt" /grࢹant administrators:f /edit
0x08BA : cacls "c:\users\wietze\downloads\test.txt" /grࢺant administrators:f /edit
0x08BB : cacls "c:\users\wietze\downloads\test.txt" /grࢻant administrators:f /edit
0x08BC : cacls "c:\users\wietze\downloads\test.txt" /grࢼant administrators:f /edit
0x08BD : cacls "c:\users\wietze\downloads\test.txt" /grࢽant administrators:f /edit
0x08BE : cacls "c:\users\wietze\downloads\test.txt" /grࢾant administrators:f /edit
0x08BF : cacls "c:\users\wietze\downloads\test.txt" /grࢿant administrators:f /edit
0x08C0 : cacls "c:\users\wietze\downloads\test.txt" /grࣀant administrators:f /edit
0x08C1 : cacls "c:\users\wietze\downloads\test.txt" /grࣁant administrators:f /edit
0x08C2 : cacls "c:\users\wietze\downloads\test.txt" /grࣂant administrators:f /edit
0x08C3 : cacls "c:\users\wietze\downloads\test.txt" /grࣃant administrators:f /edit
0x08C4 : cacls "c:\users\wietze\downloads\test.txt" /grࣄant administrators:f /edit
0x08C5 : cacls "c:\users\wietze\downloads\test.txt" /grࣅant administrators:f /edit
0x08C6 : cacls "c:\users\wietze\downloads\test.txt" /grࣆant administrators:f /edit
0x08C7 : cacls "c:\users\wietze\downloads\test.txt" /grࣇant administrators:f /edit
0x08C8 : cacls "c:\users\wietze\downloads\test.txt" /grࣈant administrators:f /edit
0x08C9 : cacls "c:\users\wietze\downloads\test.txt" /grࣉant administrators:f /edit
0x08CA : cacls "c:\users\wietze\downloads\test.txt" /gr࣊ant administrators:f /edit
0x08CB : cacls "c:\users\wietze\downloads\test.txt" /gr࣋ant administrators:f /edit
0x08CC : cacls "c:\users\wietze\downloads\test.txt" /gr࣌ant administrators:f /edit
0x08CD : cacls "c:\users\wietze\downloads\test.txt" /gr࣍ant administrators:f /edit
0x08CE : cacls "c:\users\wietze\downloads\test.txt" /gr࣎ant administrators:f /edit
0x08CF : cacls "c:\users\wietze\downloads\test.txt" /gr࣏ant administrators:f /edit
0x08D0 : cacls "c:\users\wietze\downloads\test.txt" /gr࣐ant administrators:f /edit
0x08D1 : cacls "c:\users\wietze\downloads\test.txt" /gr࣑ant administrators:f /edit
0x08D2 : cacls "c:\users\wietze\downloads\test.txt" /gr࣒ant administrators:f /edit
0x08D3 : cacls "c:\users\wietze\downloads\test.txt" /gr࣓ant administrators:f /edit
0x08D4 : cacls "c:\users\wietze\downloads\test.txt" /grࣔant administrators:f /edit
0x08D5 : cacls "c:\users\wietze\downloads\test.txt" /grࣕant administrators:f /edit
0x08D6 : cacls "c:\users\wietze\downloads\test.txt" /grࣖant administrators:f /edit
0x08D7 : cacls "c:\users\wietze\downloads\test.txt" /grࣗant administrators:f /edit
0x08D8 : cacls "c:\users\wietze\downloads\test.txt" /grࣘant administrators:f /edit
0x08D9 : cacls "c:\users\wietze\downloads\test.txt" /grࣙant administrators:f /edit
0x08DA : cacls "c:\users\wietze\downloads\test.txt" /grࣚant administrators:f /edit
0x08DB : cacls "c:\users\wietze\downloads\test.txt" /grࣛant administrators:f /edit
0x08DC : cacls "c:\users\wietze\downloads\test.txt" /grࣜant administrators:f /edit
0x08DD : cacls "c:\users\wietze\downloads\test.txt" /grࣝant administrators:f /edit
0x08DE : cacls "c:\users\wietze\downloads\test.txt" /grࣞant administrators:f /edit
0x08DF : cacls "c:\users\wietze\downloads\test.txt" /grࣟant administrators:f /edit
0x08E0 : cacls "c:\users\wietze\downloads\test.txt" /gr࣠ant administrators:f /edit
0x08E1 : cacls "c:\users\wietze\downloads\test.txt" /gr࣡ant administrators:f /edit
0x08E2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x08E3 : cacls "c:\users\wietze\downloads\test.txt" /grࣣant administrators:f /edit
0x08E4 : cacls "c:\users\wietze\downloads\test.txt" /grࣤant administrators:f /edit
0x08E9 : cacls "c:\users\wietze\downloads\test.txt" /grࣩant administrators:f /edit
0x08EA : cacls "c:\users\wietze\downloads\test.txt" /gr࣪ant administrators:f /edit
0x08EB : cacls "c:\users\wietze\downloads\test.txt" /gr࣫ant administrators:f /edit
0x08EC : cacls "c:\users\wietze\downloads\test.txt" /gr࣬ant administrators:f /edit
0x08ED : cacls "c:\users\wietze\downloads\test.txt" /gr࣭ant administrators:f /edit
0x08EE : cacls "c:\users\wietze\downloads\test.txt" /gr࣮ant administrators:f /edit
0x08EF : cacls "c:\users\wietze\downloads\test.txt" /gr࣯ant administrators:f /edit
0x08F0 : cacls "c:\users\wietze\downloads\test.txt" /grࣰant administrators:f /edit
0x08F1 : cacls "c:\users\wietze\downloads\test.txt" /grࣱant administrators:f /edit
0x08F2 : cacls "c:\users\wietze\downloads\test.txt" /grࣲant administrators:f /edit
0x08F3 : cacls "c:\users\wietze\downloads\test.txt" /grࣳant administrators:f /edit
0x08F4 : cacls "c:\users\wietze\downloads\test.txt" /grࣴant administrators:f /edit
0x08F5 : cacls "c:\users\wietze\downloads\test.txt" /grࣵant administrators:f /edit
0x08F6 : cacls "c:\users\wietze\downloads\test.txt" /grࣶant administrators:f /edit
0x08F7 : cacls "c:\users\wietze\downloads\test.txt" /grࣷant administrators:f /edit
0x08F8 : cacls "c:\users\wietze\downloads\test.txt" /grࣸant administrators:f /edit
0x08F9 : cacls "c:\users\wietze\downloads\test.txt" /grࣹant administrators:f /edit
0x08FA : cacls "c:\users\wietze\downloads\test.txt" /grࣺant administrators:f /edit
0x08FB : cacls "c:\users\wietze\downloads\test.txt" /grࣻant administrators:f /edit
0x08FC : cacls "c:\users\wietze\downloads\test.txt" /grࣼant administrators:f /edit
0x08FD : cacls "c:\users\wietze\downloads\test.txt" /grࣽant administrators:f /edit
0x08FE : cacls "c:\users\wietze\downloads\test.txt" /grࣾant administrators:f /edit
0x08FF : cacls "c:\users\wietze\downloads\test.txt" /grࣿant administrators:f /edit
0x0900 : cacls "c:\users\wietze\downloads\test.txt" /grऀant administrators:f /edit
0x09D2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09D9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09DA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09DB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09DE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09E4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09E5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x09FB : cacls "c:\users\wietze\downloads\test.txt" /gr৻ant administrators:f /edit
0x09FC : cacls "c:\users\wietze\downloads\test.txt" /grৼant administrators:f /edit
0x09FD : cacls "c:\users\wietze\downloads\test.txt" /gr৽ant administrators:f /edit
0x09FE : cacls "c:\users\wietze\downloads\test.txt" /gr৾ant administrators:f /edit
0x09FF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A00 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A04 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A0B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A0C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A0D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A0E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A11 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A12 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A29 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A31 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A34 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A37 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A3A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A3B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A3D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A43 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A44 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A45 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A46 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A49 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A4A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A4E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A4F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A50 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A53 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A56 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A57 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A58 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A5D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A5F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A60 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A61 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A62 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A63 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A64 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A65 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A76 : cacls "c:\users\wietze\downloads\test.txt" /gr੶ant administrators:f /edit
0x0A77 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A78 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A79 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A7F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A80 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A84 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A8E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0A92 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AA9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AB1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AB4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ABA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ABB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AC6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ACA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ACE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ACF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AD9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ADF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF0 : cacls "c:\users\wietze\downloads\test.txt" /gr૰ant administrators:f /edit
0x0AF2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0AF9 : cacls "c:\users\wietze\downloads\test.txt" /grૹant administrators:f /edit
0x0AFA : cacls "c:\users\wietze\downloads\test.txt" /grૺant administrators:f /edit
0x0AFB : cacls "c:\users\wietze\downloads\test.txt" /grૻant administrators:f /edit
0x0AFC : cacls "c:\users\wietze\downloads\test.txt" /grૼant administrators:f /edit
0x0AFD : cacls "c:\users\wietze\downloads\test.txt" /gr૽ant administrators:f /edit
0x0AFE : cacls "c:\users\wietze\downloads\test.txt" /gr૾ant administrators:f /edit
0x0AFF : cacls "c:\users\wietze\downloads\test.txt" /gr૿ant administrators:f /edit
0x0B00 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B04 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B0D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B0E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B11 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B12 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B29 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B31 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B34 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B3A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B3B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B45 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B46 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B49 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B4A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B4E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B4F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B50 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B51 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B52 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B53 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B54 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B55 : cacls "c:\users\wietze\downloads\test.txt" /gr୕ant administrators:f /edit
0x0B58 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B59 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B5A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B5B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B5E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B78 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B79 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B7F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B84 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B8B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B8C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B8D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B91 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0B96 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BA1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BA2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BA5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BA6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BA7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BAB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BAC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BAD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BBA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BBB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BBC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BBD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BC3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BC4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BC5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BC9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BCE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BCF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BD9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BDF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0BFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C00 : cacls "c:\users\wietze\downloads\test.txt" /grఀant administrators:f /edit
0x0C04 : cacls "c:\users\wietze\downloads\test.txt" /grఄant administrators:f /edit
0x0C0D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C11 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C29 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C34 : cacls "c:\users\wietze\downloads\test.txt" /grఴant administrators:f /edit
0x0C3A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C3B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C3C : cacls "c:\users\wietze\downloads\test.txt" /gr఼ant administrators:f /edit
0x0C45 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C49 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C4E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C4F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C50 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C51 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C52 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C53 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C54 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C57 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C5A : cacls "c:\users\wietze\downloads\test.txt" /grౚant administrators:f /edit
0x0C5B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C5C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C5D : cacls "c:\users\wietze\downloads\test.txt" /grౝant administrators:f /edit
0x0C5E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C5F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C64 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C65 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C70 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C71 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C72 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C73 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C74 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C75 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C76 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C77 : cacls "c:\users\wietze\downloads\test.txt" /gr౷ant administrators:f /edit
0x0C80 : cacls "c:\users\wietze\downloads\test.txt" /grಀant administrators:f /edit
0x0C81 : cacls "c:\users\wietze\downloads\test.txt" /grಁant administrators:f /edit
0x0C84 : cacls "c:\users\wietze\downloads\test.txt" /gr಄ant administrators:f /edit
0x0C8D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0C91 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CA9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CB4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CBB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CC5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CC9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CCE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CCF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CD9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CDA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CDB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CDC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CDD : cacls "c:\users\wietze\downloads\test.txt" /grೝant administrators:f /edit
0x0CDF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF3 : cacls "c:\users\wietze\downloads\test.txt" /grೳant administrators:f /edit
0x0CF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0CFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D00 : cacls "c:\users\wietze\downloads\test.txt" /grഀant administrators:f /edit
0x0D01 : cacls "c:\users\wietze\downloads\test.txt" /grഁant administrators:f /edit
0x0D04 : cacls "c:\users\wietze\downloads\test.txt" /grഄant administrators:f /edit
0x0D0D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D11 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D3B : cacls "c:\users\wietze\downloads\test.txt" /gr഻ant administrators:f /edit
0x0D3C : cacls "c:\users\wietze\downloads\test.txt" /gr഼ant administrators:f /edit
0x0D45 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D49 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D4F : cacls "c:\users\wietze\downloads\test.txt" /gr൏ant administrators:f /edit
0x0D50 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D51 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D52 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D53 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D54 : cacls "c:\users\wietze\downloads\test.txt" /grൔant administrators:f /edit
0x0D55 : cacls "c:\users\wietze\downloads\test.txt" /grൕant administrators:f /edit
0x0D56 : cacls "c:\users\wietze\downloads\test.txt" /grൖant administrators:f /edit
0x0D5A : cacls "c:\users\wietze\downloads\test.txt" /gr൚ant administrators:f /edit
0x0D5B : cacls "c:\users\wietze\downloads\test.txt" /gr൛ant administrators:f /edit
0x0D5C : cacls "c:\users\wietze\downloads\test.txt" /gr൜ant administrators:f /edit
0x0D5D : cacls "c:\users\wietze\downloads\test.txt" /gr൝ant administrators:f /edit
0x0D5E : cacls "c:\users\wietze\downloads\test.txt" /gr൞ant administrators:f /edit
0x0D5F : cacls "c:\users\wietze\downloads\test.txt" /grൟant administrators:f /edit
0x0D64 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D65 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D76 : cacls "c:\users\wietze\downloads\test.txt" /gr൶ant administrators:f /edit
0x0D77 : cacls "c:\users\wietze\downloads\test.txt" /gr൷ant administrators:f /edit
0x0D78 : cacls "c:\users\wietze\downloads\test.txt" /gr൸ant administrators:f /edit
0x0D80 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D81 : cacls "c:\users\wietze\downloads\test.txt" /grඁant administrators:f /edit
0x0D84 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D97 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D98 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0D99 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DBF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DC7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DC8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DC9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DCB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DCC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DCD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DCE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DD5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DD7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DE6 : cacls "c:\users\wietze\downloads\test.txt" /gr෦ant administrators:f /edit
0x0DE7 : cacls "c:\users\wietze\downloads\test.txt" /gr෧ant administrators:f /edit
0x0DE8 : cacls "c:\users\wietze\downloads\test.txt" /gr෨ant administrators:f /edit
0x0DE9 : cacls "c:\users\wietze\downloads\test.txt" /gr෩ant administrators:f /edit
0x0DEA : cacls "c:\users\wietze\downloads\test.txt" /gr෪ant administrators:f /edit
0x0DEB : cacls "c:\users\wietze\downloads\test.txt" /gr෫ant administrators:f /edit
0x0DEC : cacls "c:\users\wietze\downloads\test.txt" /gr෬ant administrators:f /edit
0x0DED : cacls "c:\users\wietze\downloads\test.txt" /gr෭ant administrators:f /edit
0x0DEE : cacls "c:\users\wietze\downloads\test.txt" /gr෮ant administrators:f /edit
0x0DEF : cacls "c:\users\wietze\downloads\test.txt" /gr෯ant administrators:f /edit
0x0DF0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0DFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E00 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E3E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E5E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E63 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E64 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E65 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E66 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E67 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E68 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E69 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E6F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E70 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E71 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E72 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E73 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E74 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E75 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E76 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E77 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E78 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E79 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E7F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E80 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E83 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E85 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E86 : cacls "c:\users\wietze\downloads\test.txt" /grຆant administrators:f /edit
0x0E89 : cacls "c:\users\wietze\downloads\test.txt" /grຉant administrators:f /edit
0x0E8B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0E8C : cacls "c:\users\wietze\downloads\test.txt" /grຌant administrators:f /edit
0x0E8E : cacls "c:\users\wietze\downloads\test.txt" /grຎant administrators:f /edit
0x0E8F : cacls "c:\users\wietze\downloads\test.txt" /grຏant administrators:f /edit
0x0E90 : cacls "c:\users\wietze\downloads\test.txt" /grຐant administrators:f /edit
0x0E91 : cacls "c:\users\wietze\downloads\test.txt" /grຑant administrators:f /edit
0x0E92 : cacls "c:\users\wietze\downloads\test.txt" /grຒant administrators:f /edit
0x0E93 : cacls "c:\users\wietze\downloads\test.txt" /grຓant administrators:f /edit
0x0E98 : cacls "c:\users\wietze\downloads\test.txt" /grຘant administrators:f /edit
0x0EA6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EA8 : cacls "c:\users\wietze\downloads\test.txt" /grຨant administrators:f /edit
0x0EA9 : cacls "c:\users\wietze\downloads\test.txt" /grຩant administrators:f /edit
0x0EAC : cacls "c:\users\wietze\downloads\test.txt" /grຬant administrators:f /edit
0x0EBA : cacls "c:\users\wietze\downloads\test.txt" /gr຺ant administrators:f /edit
0x0EBE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EBF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EC5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EC7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0ECC : cacls "c:\users\wietze\downloads\test.txt" /gr໌ant administrators:f /edit
0x0ECE : cacls "c:\users\wietze\downloads\test.txt" /gr໎ant administrators:f /edit
0x0ECF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EDA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EDB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EDE : cacls "c:\users\wietze\downloads\test.txt" /grໞant administrators:f /edit
0x0EDF : cacls "c:\users\wietze\downloads\test.txt" /grໟant administrators:f /edit
0x0EE0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EE9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EEA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EEB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EEC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EED : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EEE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EEF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0EFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0F6D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0F6E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0F6F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0F70 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FDB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FDC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FDD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FDE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FDF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FE9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FEA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FEB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FEC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FED : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FEE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FEF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x0FFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10C6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10C7 : cacls "c:\users\wietze\downloads\test.txt" /grჇant administrators:f /edit
0x10C8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10C9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10CA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10CB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10CC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10CD : cacls "c:\users\wietze\downloads\test.txt" /grჍant administrators:f /edit
0x10CE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10CF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x10FD : cacls "c:\users\wietze\downloads\test.txt" /grჽant administrators:f /edit
0x10FE : cacls "c:\users\wietze\downloads\test.txt" /grჾant administrators:f /edit
0x10FF : cacls "c:\users\wietze\downloads\test.txt" /grჿant administrators:f /edit
0x1249 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x124E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x124F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1257 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1259 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x125E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x125F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1289 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x128E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x128F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12B1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12B6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12B7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12BF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12C1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12C6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x12C7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1311 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1316 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1317 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x135B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x135C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x139B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x139C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x139D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x139E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x139F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x13F5 : cacls "c:\users\wietze\downloads\test.txt" /grᏵant administrators:f /edit
0x13F6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x13F7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x13F8 : cacls "c:\users\wietze\downloads\test.txt" /grᏸant administrators:f /edit
0x13F9 : cacls "c:\users\wietze\downloads\test.txt" /grᏹant administrators:f /edit
0x13FA : cacls "c:\users\wietze\downloads\test.txt" /grᏺant administrators:f /edit
0x13FB : cacls "c:\users\wietze\downloads\test.txt" /grᏻant administrators:f /edit
0x13FC : cacls "c:\users\wietze\downloads\test.txt" /grᏼant administrators:f /edit
0x13FD : cacls "c:\users\wietze\downloads\test.txt" /grᏽant administrators:f /edit
0x13FE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x13FF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x169D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x169E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x169F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16F4 : cacls "c:\users\wietze\downloads\test.txt" /grᛴant administrators:f /edit
0x16F5 : cacls "c:\users\wietze\downloads\test.txt" /grᛵant administrators:f /edit
0x16F6 : cacls "c:\users\wietze\downloads\test.txt" /grᛶant administrators:f /edit
0x16F7 : cacls "c:\users\wietze\downloads\test.txt" /grᛷant administrators:f /edit
0x16F8 : cacls "c:\users\wietze\downloads\test.txt" /grᛸant administrators:f /edit
0x16F9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x16FF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x170D : cacls "c:\users\wietze\downloads\test.txt" /grᜍant administrators:f /edit
0x1715 : cacls "c:\users\wietze\downloads\test.txt" /gr᜕ant administrators:f /edit
0x1716 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1717 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1718 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1719 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x171F : cacls "c:\users\wietze\downloads\test.txt" /grᜟant administrators:f /edit
0x1737 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1738 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1739 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x173F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1754 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1755 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1756 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1757 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1758 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1759 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x175F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x176D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1771 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1774 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1775 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1776 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1777 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1778 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1779 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x177A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x177B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x177C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x177D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x180D : cacls "c:\users\wietze\downloads\test.txt" /gr᠍ant administrators:f /edit
0x180F : cacls "c:\users\wietze\downloads\test.txt" /gr᠏ant administrators:f /edit
0x181A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x181B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x181C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x181D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x181E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x181F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1878 : cacls "c:\users\wietze\downloads\test.txt" /grᡸant administrators:f /edit
0x1879 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x187F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18AB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18AC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18AD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18AE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18AF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18F7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18F8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18F9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x18FF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x191D : cacls "c:\users\wietze\downloads\test.txt" /grᤝant administrators:f /edit
0x191E : cacls "c:\users\wietze\downloads\test.txt" /grᤞant administrators:f /edit
0x191F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x192C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x192D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x192E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x192F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x193C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x196E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x196F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1975 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1976 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1977 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1978 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1979 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x197F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19AE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19AF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19CF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19DB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19DC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x19DD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A1D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A5F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A7D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A7E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A8F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9D : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9E : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1A9F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AAE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AAF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AB0 : cacls "c:\users\wietze\downloads\test.txt" /gr᪰ant administrators:f /edit
0x1AB1 : cacls "c:\users\wietze\downloads\test.txt" /gr᪱ant administrators:f /edit
0x1AB2 : cacls "c:\users\wietze\downloads\test.txt" /gr᪲ant administrators:f /edit
0x1AB3 : cacls "c:\users\wietze\downloads\test.txt" /gr᪳ant administrators:f /edit
0x1AB4 : cacls "c:\users\wietze\downloads\test.txt" /gr᪴ant administrators:f /edit
0x1AB5 : cacls "c:\users\wietze\downloads\test.txt" /gr᪵ant administrators:f /edit
0x1AB6 : cacls "c:\users\wietze\downloads\test.txt" /gr᪶ant administrators:f /edit
0x1AB7 : cacls "c:\users\wietze\downloads\test.txt" /gr᪷ant administrators:f /edit
0x1AB8 : cacls "c:\users\wietze\downloads\test.txt" /gr᪸ant administrators:f /edit
0x1AB9 : cacls "c:\users\wietze\downloads\test.txt" /gr᪹ant administrators:f /edit
0x1ABA : cacls "c:\users\wietze\downloads\test.txt" /gr᪺ant administrators:f /edit
0x1ABB : cacls "c:\users\wietze\downloads\test.txt" /gr᪻ant administrators:f /edit
0x1ABC : cacls "c:\users\wietze\downloads\test.txt" /gr᪼ant administrators:f /edit
0x1ABD : cacls "c:\users\wietze\downloads\test.txt" /gr᪽ant administrators:f /edit
0x1ABE : cacls "c:\users\wietze\downloads\test.txt" /gr᪾ant administrators:f /edit
0x1ABF : cacls "c:\users\wietze\downloads\test.txt" /grᪿant administrators:f /edit
0x1AC0 : cacls "c:\users\wietze\downloads\test.txt" /grᫀant administrators:f /edit
0x1AC1 : cacls "c:\users\wietze\downloads\test.txt" /gr᫁ant administrators:f /edit
0x1AC2 : cacls "c:\users\wietze\downloads\test.txt" /gr᫂ant administrators:f /edit
0x1AC3 : cacls "c:\users\wietze\downloads\test.txt" /gr᫃ant administrators:f /edit
0x1AC4 : cacls "c:\users\wietze\downloads\test.txt" /gr᫄ant administrators:f /edit
0x1AC5 : cacls "c:\users\wietze\downloads\test.txt" /gr᫅ant administrators:f /edit
0x1AC6 : cacls "c:\users\wietze\downloads\test.txt" /gr᫆ant administrators:f /edit
0x1AC7 : cacls "c:\users\wietze\downloads\test.txt" /gr᫇ant administrators:f /edit
0x1AC8 : cacls "c:\users\wietze\downloads\test.txt" /gr᫈ant administrators:f /edit
0x1AC9 : cacls "c:\users\wietze\downloads\test.txt" /gr᫉ant administrators:f /edit
0x1ACA : cacls "c:\users\wietze\downloads\test.txt" /gr᫊ant administrators:f /edit
0x1ACB : cacls "c:\users\wietze\downloads\test.txt" /gr᫋ant administrators:f /edit
0x1ACC : cacls "c:\users\wietze\downloads\test.txt" /grᫌant administrators:f /edit
0x1ACD : cacls "c:\users\wietze\downloads\test.txt" /grᫍant administrators:f /edit
0x1ACE : cacls "c:\users\wietze\downloads\test.txt" /grᫎant administrators:f /edit
0x1ACF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AD9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1ADF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AE9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AEA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AEB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AEC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AED : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AEE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AEF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF0 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF1 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF2 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF3 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFC : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFD : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFE : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1AFF : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1B4F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1B7D : cacls "c:\users\wietze\downloads\test.txt" /gr᭽ant administrators:f /edit
0x1B7E : cacls "c:\users\wietze\downloads\test.txt" /gr᭾ant administrators:f /edit
0x1B7F : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BAB : cacls "c:\users\wietze\downloads\test.txt" /gr᮫ant administrators:f /edit
0x1BAC : cacls "c:\users\wietze\downloads\test.txt" /grᮬant administrators:f /edit
0x1BAD : cacls "c:\users\wietze\downloads\test.txt" /grᮭant administrators:f /edit
0x1BBA : cacls "c:\users\wietze\downloads\test.txt" /grᮺant administrators:f /edit
0x1BBB : cacls "c:\users\wietze\downloads\test.txt" /grᮻant administrators:f /edit
0x1BBC : cacls "c:\users\wietze\downloads\test.txt" /grᮼant administrators:f /edit
0x1BBD : cacls "c:\users\wietze\downloads\test.txt" /grᮽant administrators:f /edit
0x1BBE : cacls "c:\users\wietze\downloads\test.txt" /grᮾant administrators:f /edit
0x1BBF : cacls "c:\users\wietze\downloads\test.txt" /grᮿant administrators:f /edit
0x1BF4 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BF5 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BF6 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BF7 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BF8 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BF9 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BFA : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1BFB : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C38 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C39 : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C3A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C4A : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C4B : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C4C : cacls "c:\users\wietze\downloads\test.txt" /grant administrators:f /edit
0x1C82 : cacls "c:\users\wietze\downloads\test.txt" /grᲂant administrators:f /edit
0x1C83 : cacls "c:\users\wietze\downloads\test.txt" /grᲃant administrators:f /edit
0x1C84 : cacls "c:\users\wietze\downloads\test.txt" /grᲄant administrators:f /edit