-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOP_SUCCESS_RATE_Verification_Results.csv
We can't make this file beautiful and searchable because it's too large.
7216 lines (7216 loc) · 609 KB
/
OP_SUCCESS_RATE_Verification_Results.csv
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
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6041_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6045_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6049_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\604_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6050_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6051_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6052_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6053_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6054_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6055_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6056_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6057_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6058_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6059_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\605_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6060_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6061_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6062_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6063_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6064_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6065_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6066_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6067_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6068_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6069_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6070_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6071_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6072_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6073_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6074_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6075_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6076_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6077_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6078_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6079_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\607_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6081_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6082_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6083_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6084_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6085_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6086_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6087_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6088_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6089_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\608_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6090_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6092_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6093_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6094_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6095_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6096_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6097_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6098_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6099_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\609_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\60_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6101_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6102_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6103_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6104_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6105_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6106_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6108_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6109_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\610_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6110_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6111_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6112_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6113_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6114_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6115_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6117_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6118_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\611_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6121_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6122_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6123_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6124_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6126_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6127_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6128_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6129_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\612_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6130_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6131_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6132_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6133_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6134_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6135_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6136_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6137_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6138_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6139_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\613_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6140_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6141_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6143_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6144_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6145_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6146_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6148_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6149_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\614_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6150_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6151_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6153_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6154_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6155_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6156_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6157_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6159_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\615_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6160_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6162_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6163_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6165_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6167_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6168_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\616_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6170_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6171_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6172_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6173_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6175_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6176_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6178_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6179_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\617_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6181_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6183_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6184_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6186_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6187_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6188_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6189_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6192_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6193_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6194_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6199_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\619_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6201_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6202_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6203_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6204_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6205_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6206_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6207_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6208_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6209_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\620_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6211_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6212_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6213_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6215_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6217_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6218_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\621_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6220_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6221_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6222_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6223_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6224_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6225_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6226_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6227_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6228_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6229_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\622_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6231_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6232_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6233_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6234_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6235_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6237_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6238_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6239_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\623_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6240_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6241_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6242_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6243_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6244_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6245_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6246_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6247_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6248_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6249_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\624_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6250_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6251_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6252_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6253_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6254_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6255_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6256_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6257_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6259_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\625_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6263_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6264_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6265_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6266_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6267_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6268_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6269_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\626_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6270_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6271_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6272_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6273_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6275_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6276_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6277_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6278_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6279_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\627_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6281_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6282_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6283_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6284_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6285_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6286_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6289_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\628_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6290_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6291_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6292_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6294_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6295_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6298_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\629_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6301_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6302_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6303_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6304_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6305_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6306_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6307_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6309_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\630_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6310_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6311_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6312_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6313_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6315_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6316_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6317_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6318_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6319_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\631_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6321_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6322_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6323_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6324_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6325_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6327_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6328_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6329_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\632_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6330_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6331_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6332_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6333_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6334_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6336_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6338_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6339_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6340_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6341_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6342_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6343_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6344_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6345_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6346_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6347_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6348_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6349_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6350_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6352_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6353_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6354_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6358_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6359_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\635_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6360_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6368_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6369_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\636_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6370_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6371_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6372_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6373_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6374_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6375_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6376_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6378_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6379_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\637_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6380_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6381_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6382_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6383_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6384_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6385_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6386_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6387_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6388_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6389_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\638_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6390_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6391_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6392_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6393_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6394_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6395_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6398_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6399_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\639_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\63_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6400_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6401_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6402_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6403_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6404_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6405_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6406_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6407_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6408_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6409_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6410_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6411_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6412_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6413_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6414_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6415_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6416_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6417_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6418_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6419_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\641_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6420_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6421_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6422_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6423_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6426_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6427_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6428_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6429_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\642_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6430_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6431_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6434_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6435_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6436_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6437_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6438_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6439_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\643_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6440_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6442_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6443_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6444_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6445_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6446_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6447_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6448_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6449_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\644_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6450_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6453_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6456_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6457_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6458_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6459_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\645_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6460_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6461_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6462_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6463_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6464_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6465_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6466_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6467_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6469_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\646_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6470_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6471_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6472_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6473_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6474_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6475_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6476_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6477_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6478_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\647_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6482_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6484_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6485_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6486_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6487_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6488_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6489_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\648_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6490_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6491_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6493_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6494_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6496_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6497_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6498_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6499_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\649_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\64_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6500_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6501_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6502_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6503_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6504_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6505_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6506_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6507_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6508_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\650_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6510_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6511_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6512_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6513_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6514_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6515_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6516_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6517_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6518_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6519_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\651_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6520_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6521_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6522_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6523_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6524_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6525_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6526_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6527_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\652_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6530_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6531_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6532_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6533_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6534_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6535_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6536_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6537_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6538_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6539_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\653_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6541_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6542_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6543_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6544_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6545_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6546_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6547_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6548_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6549_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\654_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6550_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6551_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6552_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6553_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6554_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6555_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6556_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6557_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6559_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\655_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6560_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6561_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6562_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6563_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6565_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6566_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6567_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6569_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\656_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6570_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6571_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6573_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6577_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6578_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6579_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\657_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6581_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6583_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6584_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6585_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6586_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6587_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6588_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6589_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6590_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6592_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6593_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6594_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6595_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6596_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6597_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6598_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\659_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\65_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6600_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6602_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6604_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6606_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6607_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6608_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6609_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\660_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6610_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6611_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6612_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6613_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6614_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6615_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6616_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6619_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\661_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6620_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6621_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6622_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6623_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6625_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6626_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6627_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6628_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6629_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\662_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6630_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6631_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6632_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6633_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6635_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6636_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\663_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6640_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6641_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6643_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6644_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6645_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6646_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6647_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6649_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\664_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6650_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6652_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6653_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6654_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6655_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6657_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6658_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6659_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\665_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6660_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6662_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6663_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6664_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6666_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6667_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6668_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6669_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\666_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6671_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6673_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6674_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6675_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6676_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6677_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6678_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6679_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\667_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6680_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6682_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6683_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6684_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6685_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6686_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6687_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6688_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6689_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\668_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6690_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6691_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6692_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6697_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6699_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\669_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\66_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6700_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6701_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6702_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6703_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6704_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6705_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6706_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6707_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6708_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6709_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\670_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6710_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6711_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6715_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6717_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6718_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6719_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\671_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6720_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6722_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6723_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6725_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6726_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6727_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6728_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6729_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\672_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6730_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6731_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6732_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6733_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6734_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6735_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6736_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6737_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6738_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6739_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\673_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6742_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6743_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6744_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6746_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6747_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6748_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6749_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\674_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6750_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6751_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6753_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6754_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6755_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6756_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6758_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6759_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\675_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6760_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6762_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6763_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6764_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6766_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6768_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6769_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\676_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6770_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6771_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6772_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6773_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6774_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6775_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6777_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\677_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6780_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6781_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6782_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6783_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6785_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6786_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6787_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6788_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6789_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\678_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6790_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6792_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6793_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6795_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6796_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6799_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\679_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\67_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6800_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6801_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6802_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6803_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6804_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6805_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6806_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6807_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6808_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6809_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\680_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6810_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6811_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6812_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6813_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6814_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6815_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6816_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6818_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6819_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\681_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6820_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6821_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6822_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6823_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6824_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6825_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6826_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6827_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6829_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\682_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6830_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\6831_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\0_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1000_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1001_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1002_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1003_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1004_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1005_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1006_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1007_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1008_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1009_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\100_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1010_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1011_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1012_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1013_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1014_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1015_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1016_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1017_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1018_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1019_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\101_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1020_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1021_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1022_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1024_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1025_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1026_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1027_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1028_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1029_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1030_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1031_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1032_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1033_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1034_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1035_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1036_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1037_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1038_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1039_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\103_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1040_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1041_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1042_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1043_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1044_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1045_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1046_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1047_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1048_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1049_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\104_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1050_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1051_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1052_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1053_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1054_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1055_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1056_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1057_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1058_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1059_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\105_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1060_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1061_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1062_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1063_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1064_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1065_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1066_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1067_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1068_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1069_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\106_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1070_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1071_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1072_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1073_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1074_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1075_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1076_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1077_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1078_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\107_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1080_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1081_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1082_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1083_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1084_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1085_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1086_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1087_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1088_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1089_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\108_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1090_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1091_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1092_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1093_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1094_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1095_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1096_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1097_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1098_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1099_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\109_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\10_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1100_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1101_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1102_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1104_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1105_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1106_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1107_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1108_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1109_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\110_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1110_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1111_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1112_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1114_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1115_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1116_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1117_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1118_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1119_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\111_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1120_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1121_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1122_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1123_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1124_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1125_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1126_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1127_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1128_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1129_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\112_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1130_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1131_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1132_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1133_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\114_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\115_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\116_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\117_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\118_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\119_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\11_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\120_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1216_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1217_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1218_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1219_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\121_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\122_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\123_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\124_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\125_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\126_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\127_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\128_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\129_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\12_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1302_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1303_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1304_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1305_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1306_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1307_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1308_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1309_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\130_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1310_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1311_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1312_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1313_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1314_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1315_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1317_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1318_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1319_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\131_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\134_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\135_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\138_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\139_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\13_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1402_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1403_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1404_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1405_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1406_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1407_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1408_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1409_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\140_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1411_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1412_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1413_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1414_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1415_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1416_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1417_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1418_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1419_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\141_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1420_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1421_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1422_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1423_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1424_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1425_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1426_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1427_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1428_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1429_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\142_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1430_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1431_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1432_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1433_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1434_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1435_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1436_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1437_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1438_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1439_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\143_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1441_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1442_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1443_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1444_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1445_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1446_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1447_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1448_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1449_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\144_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1450_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1451_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1452_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1453_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1454_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1455_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1456_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1458_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1459_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\145_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1460_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1461_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1462_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1463_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1464_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1465_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1466_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1467_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1468_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1469_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\146_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1470_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1471_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1472_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1473_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1474_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1475_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1476_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1477_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1478_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1479_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\147_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1480_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1481_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1482_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1483_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1484_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1485_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1486_0plnData.txt,FALSE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1487_0plnData.txt,TRUE
C:\Users\Hyun\IdeaProjects\StarPlateS\SoS_Extension\logs_full\1488_0plnData.txt,FALSE