-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoscn.html
2284 lines (2274 loc) · 189 KB
/
oscn.html
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en-US" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en-US" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en-US" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage no-websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients no-cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths" style="height: 100%;" lang="en-US"><!--<![endif]--><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
OSCN Search Results
</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="oscn_files/normalize.css">
<link rel="stylesheet" href="oscn_files/main.css">
<link rel="stylesheet" href="oscn_files/bootstrap-2.css">
<link rel="stylesheet" href="oscn_files/oscn-navigation.css">
<link rel="stylesheet" href="oscn_files/oscn-footer.css">
<style> /* test */
.caseCourtTable { width:100%; margin-bottom: 1px; position: relative;}
.caseCourtHeader {
text-align: left;
font-weight: bold;
position: relative;
}
.resultTableHeaders { background: #f7f7f7; color: #033c60; padding: 2px 5px; margin: 0;}
.caseCourtHeader {
background: #033c60;
color: white;
margin: 0;
padding: 6px;
font-size: 18px;
text-transform: uppercase;
position: relative;
}
.resultTableHeaders { font-size: 15px; text-align: left; }
.resultTableHeaders a { display: inline-block; /* background-color: yellow; */ }
.resultTableHeaders th { padding: 4px 3px; vertical-align: top; }
.caseNo { padding-left: 5px; }
.resultTableHeaders { border-bottom: thin solid #e1e1e1; }
.resultTableRow { border-top: thin solid #e1e1e1; }
.resultTableRow td { font-size: 11px; padding: 4px 3px; color: #033c60; vertical-align: top;}
.resultTableRow a { color: #0073cf; }
.resultTableRow a:visited { color: #033c60; }
.timeTaken { position: absolute; right: 5px; font-size: 14px; }
.moreResults { color: #666666; font-size: 12px; background: white; }
.resultsTitle {
color: White;
background-color: #0073cf;
border-bottom: 2px solid white;
border-top: 2px solid white;
font-size: 18px;
text-transform: uppercase;
font-weight: bold;
padding: 0;
margin: 0;
padding: 5px 5px;
text-align: center;
}
.resultsTitle span a {color: #e1e1ee; font-size: 11px;}
.resultsTitle span a:visited {color: #e1e1ee;}
.resultsTitle span a:hover {color: #f7f7f7;}
.shortStyle { text-transform: uppercase; }
.evenRow { background-color: #f7f7f7; }
.oddRow { background-color: white; }</style>
<script async="" src="oscn_files/analytics.js"></script><script src="oscn_files/modernizr-2.js"></script>
<!--[if lt IE 9]>
<script src="/assets/js/respond.min.js"></script>
<script>
window.onload = function() {
setTimeout(function(){
var height = $(".footer").outerHeight(true);
$("#oscn-content").css("padding-bottom", function(){
return height;
});}, 2000);
}
</script>
<![endif]-->
<!-- /JAVASCRIPT_TOP/ -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54280338-1', {'sampleRate': 50});
ga('send', 'pageview');
</script>
</head>
<body style="height: 100%;">
<div class="wrapper" style="min-height: 100%; position: relative; padding: 0px; margin: 0px;">
<!-- /ERRORMESSAGE/ -->
<div class="header">
<div class="accessibility">
<a href="#oscn-content">Skip to Main Content</a>
<a href="http://www.oscn.net/v4/accessibility/">Accessibility Statement</a>
</div>
<div class="navigation-tophat">
<div class="sized">
<div class="left">
<ul>
<li><a href="http://www.oscn.net/applications/oscn/SimpleHelp.asp?HelpContextID=">Help</a></li>
<li><a href="http://www.oscn.net/applications/oscn/SimpleHelp.asp?HelpContextID=84">Contact Us</a></li>
</ul>
</div>
<div class="right">
<ul>
<!--<li><a href="">e-filing</a></li>-->
<li><a href="https://pay.oscn.net/epayments/">e-payments</a></li>
<li><a href="http://www.oscn.net/jobs/">Careers</a></li>
<!-- <li class="site-search no-border">
<form class="search-form" method="get" action="/search/search.aspx">
<div class="search-container">
<select class="template-dropdown" style="display: none;">
<option class="template-option"></option>
</select>
<select class="search-dropdown" name="t">
<optgroup label="Legal Research">
<option value="citation">By Citation (QuickCite)</option>
<option value="judge">By Judge</option>
<option value="caselaw">Case Law (full-text)</option>
<option value="statutes">Statutes & Rules (full-text)</option>
<option value="library">All Oklahoma Materials (full-text)</option>
</optgroup>
<optgroup label="Court Records">
<option selected="selected" value="party">By Party Name</option>
<option value="business">By Business Name</option>
<option value="casenumber">By Case Number</option>
<option value="traffic">By Traffic Citation</option>
</optgroup>
</select></div><!--
<input class="search-input" type="text" value="Search" name="q"></input><!--
<button class="search-button" type="submit" value="Go!"></button>
</form>
</li>-->
</ul>
</div>
</div>
</div>
<div class="navigation-spectacles sized">
<div class="navigation-utility">
<div class="brand"><a href="http://www.oscn.net/"><img id="logo" class="screen-logo" alt="OSCN" src="oscn_files/logo.jpg"><img class="print-logo" alt="" src="oscn_files/logo-bw.jpg"></a></div>
<div class="toggle" style="display: none;"><button type="button" data-toggle="navigation"><span class="sr-only">toggle navigation</span></button></div>
</div>
<nav role="navigation">
<ol class="nav-menu">
<li class="nav-item" id="home"><a href="http://www.oscn.net/v4/" id="accessible-megamenu-1515985428276-1">Home</a></li>
<li class="nav-item" id="courts_menu"><a href="http://www.oscn.net/courts/" id="accessible-megamenu-1515985428320-2" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428320-3" aria-expanded="false">Courts</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428320-3" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428320-2"><ol class="row-fluid"><li class="sub-nav-group span4"><h3>Appellate Courts</h3><ol><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/static/osc-ojs-brochure-online.pdf">About the Courts<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/oscn/schome/">Supreme Court</a></li><li><a href="http://www.okcca.net/">Court of Criminal Appeals</a></li><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/static/osc-ojs-brochure-online.pdf">Court of Civil Appeals<span class="sr-only">PDF</span></a></li></ol><h3>Other Courts</h3><a href="http://www.owcc.state.ok.us/">Workers' Compensation Court of Existing Claims</a><h3>Judicial Biographies</h3><ol><li><a href="http://www.oscn.net/static/osc-ojs-brochure-online.pdf#page=3" class="pdf-link" target="_blank">Oklahoma Supreme Court<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/static/osc-ojs-brochure-online.pdf#page=53" class="pdf-link" target="_blank">Oklahoma Court of Criminal Appeals<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/static/osc-online-judges-coca-2014.pdf" class="pdf-link" target="_blank">Oklahoma Court of Civil Appeals<span class="sr-only">PDF</span></a></li> <li><a href="http://www.oscn.net/static/osc-ojs-brochure-online.pdf#page=64" class="pdf-link" target="_blank">Oklahoma Trial Court<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/static/osc-online-judges-workers-compensation-2014.pdf" class="pdf-link" target="_blank">Oklahoma Workers' Compensation<span class="sr-only">PDF</span></a></li></ol></li><li class="sub-nav-group span8"><h3>District Courts</h3><ol class="courts-list"><li class="courts-group"><h4 class="sr-only">Adair through Cimarron</h4><ol class="county-list"><li class="courtListitem group1"><a href="http://www.oscn.net/courts/adair">Adair</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/alfalfa">Alfalfa</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/atoka">Atoka</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/beaver">Beaver</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/beckham">Beckham</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/blaine">Blaine</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/bryan">Bryan</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/caddo">Caddo</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/canadian">Canadian</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/carter">Carter</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/cherokee">Cherokee</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/choctaw">Choctaw</a></li><li class="courtListitem group1"><a href="http://www.oscn.net/courts/cimarron">Cimarron</a></li></ol></li><li class="courts-group"><h4 class="sr-only">Cleveland through Grady</h4><ol class="county-list"><li class="courtListitem group2"><a href="http://www.oscn.net/courts/cleveland">Cleveland</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/coal">Coal</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/comanche">Comanche</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/cotton">Cotton</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/craig">Craig</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/creek">Creek</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/custer">Custer</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/delaware">Delaware</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/dewey">Dewey</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/ellis">Ellis</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/garfield">Garfield</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/garvin">Garvin</a></li><li class="courtListitem group2"><a href="http://www.oscn.net/courts/grady">Grady</a></li></ol></li><li class="courts-group"><h4 class="sr-only">Grant through Latimer</h4><ol class="county-list"><li class="courtListitem group3"><a href="http://www.oscn.net/courts/grant">Grant</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/greer">Greer</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/harmon">Harmon</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/harper">Harper</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/haskell">Haskell</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/hughes">Hughes</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/jackson">Jackson</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/jefferson">Jefferson</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/johnston">Johnston</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/kay">Kay</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/kingfisher">Kingfisher</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/kiowa">Kiowa</a></li><li class="courtListitem group3"><a href="http://www.oscn.net/courts/latimer">Latimer</a></li></ol></li><li class="courts-group"><h4 class="sr-only">LeFlore through Noble</h4><ol class="county-list"><li class="courtListitem group4"><a href="http://www.oscn.net/courts/leflore">LeFlore</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/lincoln">Lincoln</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/logan">Logan</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/love">Love</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/major">Major</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/marshall">Marshall</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/mayes">Mayes</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/mcclain">McClain</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/mccurtain">McCurtain</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/mcintosh">McIntosh</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/murray">Murray</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/muskogee">Muskogee</a></li><li class="courtListitem group4"><a href="http://www.oscn.net/courts/noble">Noble</a></li></ol></li><li class="courts-group"><h4 class="sr-only">Nowata through Roger Mills</h4><ol class="county-list"><li class="courtListitem group5"><a href="http://www.oscn.net/courts/nowata">Nowata</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/okfuskee">Okfuskee</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/oklahoma">Oklahoma</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/okmulgee">Okmulgee</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/osage">Osage</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/ottawa">Ottawa</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/pawnee">Pawnee</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/payne">Payne</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/pittsburg">Pittsburg</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/pontotoc">Pontotoc</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/pottawatomie">Pottawatomie</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/pushmataha">Pushmataha</a></li><li class="courtListitem group5"><a href="http://www.oscn.net/courts/roger-mills">Roger Mills</a></li></ol></li><li class="courts-group"><h4 class="sr-only">Rogers through Woodward</h4><ol class="county-list"><li class="courtListitem group6"><a href="http://www.oscn.net/courts/rogers">Rogers</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/seminole">Seminole</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/sequoyah">Sequoyah</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/stephens">Stephens</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/texas">Texas</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/tillman">Tillman</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/tulsa">Tulsa</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/wagoner">Wagoner</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/washington">Washington</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/washita">Washita</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/woods">Woods</a></li><li class="courtListitem group6"><a href="http://www.oscn.net/courts/woodward">Woodward</a></li></ol></li></ol></li></ol></div></li>
<li class="nav-item" id="decisions"><a href="http://www.oscn.net/decisions/" id="accessible-megamenu-1515985428328-4" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428328-5" aria-expanded="false">Decisions</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428328-5" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428328-4"><ol class="row-fluid"><li class="sub-nav-group span4"><h3>Supreme Court of Oklahoma</h3><ol><li><a href="http://www.oscn.net/decisions/ok/7">New Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSSC">View Decisions by Year</a></li></ol></li><li class="sub-nav-group span4"><h3>Court of Criminal Appeals</h3><ol><li><a href="http://www.oscn.net/decisions/ok-cr/7">New Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSCR">View Decisions by Year</a></li></ol></li><li class="sub-nav-group span4"><h3>Court of Civil Appeals</h3><ol><li><a href="http://www.oscn.net/decisions/ok-civ-app/7">New Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSCV">View Decisions by Year</a></li></ol></li></ol></div></li>
<li class="nav-item" id="programs"><a href="http://www.oscn.net/v4/programs/" id="accessible-megamenu-1515985428333-6" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428333-7" aria-expanded="false">Programs</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428333-7" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428333-6"><ol class="row-fluid"><li class="sub-nav-group span4"><h3>Court Programs</h3><ol><li><a target="_blank" href="http://www.thesovereigntysymposium.com/splash.aspx">The Sovereignty Symposium</a></li><li><a href="http://www.oscn.net/static/adr/default.aspx">Alternative Dispute Resolution</a></li><li><a href="http://www.oscn.net/static/adr/default.aspx">Early Settlement Mediation</a></li><li><a href="http://www.oscn.net/Sites/CourtImprovement/default.aspx">Children's Court Improvement Program (CIP)</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/interpreter.asp">Certified Courtroom Interpreters</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/csr.asp">Certified Shorthand Reporters</a></li><li><a href="http://www.oscn.net/jnc/">Judicial Nominating Commission</a></li></ol> </li><li class="sub-nav-group span4"><h3>Access To Justice</h3><ol><li><a href="http://www.oscn.net/static/access%20to%20justice%20members.pdf" class="pdf-link" target="_blank">Commisioners<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/protectiveorders.asp">Protective Orders</a></li><li><a href="http://www.oscn.net/static/forms/childsupport.asp">Child Support</a></li><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/forms/aoc_form/adobe/dom.-standard-visit-sch.-advis.%20gdelns.pdf">Standard Visitation Schedule & Advisory Guidelines<span class="sr-only">PDF</span></a></li><li><a target="_blank" class="external-link" href="http://oklaw.org/legal-aid-self-help-forms">Legal Aid Self-Help Forms</a></li></ol></li><li class="sub-nav-group span4"><h3>Accessibility</h3><ol><li><a href="http://www.oscn.net/pages/accessibility">Accessibility Statement</a></li></ol></li></ol></div></li>
<li class="nav-item" id="news"><a href="http://www.oscn.net/news/" id="accessible-megamenu-1515985428335-8" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428335-9" aria-expanded="false">News</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428335-9" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428335-8"><ol class="row-fluid"><li class="sub-nav-group span3"><h3>News</h3><ol><li><a href="http://www.oscn.net/news/">Recent News</a></li><li><a href="http://www.oscn.net/news/archive">Archived News</a></li></ol></li></ol></div></li>
<li class="nav-item" id="legal-research"><a href="http://www.oscn.net/applications/oscn/start.asp?viewType=LIBRARY" id="accessible-megamenu-1515985428348-10" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428348-11" aria-expanded="false">Legal Research</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428348-11" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428348-10"><ol class="row-fluid"><li class="sub-nav-group span4"><h3>Legal Research</h3><ol><li><a href="http://www.oscn.net/applications/oscn/start.asp?viewType=LIBRARY&p=1">All Legal Research</a></li><!--<li><a href="/applications/oscn/judges.asp">List of Appellate Opinions by Judge</a></li>--><li><a href="http://www.oscn.net/applications/oscn/start.asp?viewType=LIBRARY&p=2">Federal Legal Materials</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=FDCS&level=1">Indian Territory Cases</a></li></ol><h3>Search</h3><ol><li><a href="http://www.oscn.net/applications/oscn/search.asp?simple=true">Search</a></li><li><a href="http://www.oscn.net/applications/oscn/search.asp">Advanced Search</a></li><li><a href="http://www.oscn.net/applications/oscn/QuickCase.asp">Batch Citator</a></li></ol></li><li class="sub-nav-group span4"><h3>Oklahoma Law</h3><ol><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKCS&level=1">Appellate Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSSC&level=1">Supreme Court Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSCR&level=1">Court of Criminal Appeals Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSCV&level=1">Court of Civil Appeals Decisions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSJU&level=1">Court on the Judiciary Opinions</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKST&level=1">Statutes</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKLG&level=1">Session Laws</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKCN&level=1">Constitution</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKRU&level=2">Court Rules</a></li><!--<li><a href="/applications/oscn/Index.asp?ftdb=STOKEF&level=1">Rules for e-Filing in Selected Pilot Courts</a></li>--><li><a target="_blank" href="https://www.sos.ok.gov/oar/Default.aspx">Administrative Code and Oklahoma Register (Secretary of State)</a></li></ol></li><li class="sub-nav-group span4"><h3>Oklahoma Legal Materials</h3><ol><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKJU&level=1">Uniform Jury Instructions</a></li><li><a href="http://www.oscn.net/static/forms/start.asp">Legal Forms</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKRP&level=1">Registry of Frivolous or Malicious Appeals</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKFF&level=1">Full Faith and Credit of Tribal Courts</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKAG&level=1">Attorney General Opinions</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKCSJE&level=1">Judicial Ethics Advisory Panel Opinions</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKFB&level=1">Fee & Bond Schedules</a></li><li><a href="http://www.oscn.net/applications/oscn/Index.asp?ftdb=STOKAP&level=1">Fee and Copy Schedules for Appellate Courts</a></li><li><a href="http://www.oscn.net/applications/oscn/index.asp?ftdb=STOKIN&level=1">Interest on Judgments</a></li></ol></li></ol></div></li>
<li class="nav-item" id="court-records"><a href="http://www.oscn.net/dockets/" id="accessible-megamenu-1515985428357-12" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428357-13" aria-expanded="false">Court Records</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428357-13" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428357-12"><ol class="row-fluid"><li class="sub-nav-group span3"><h3>Search</h3><ol><li><a href="http://www.oscn.net/dockets/Search.aspx">Search OSCN Court Records</a></li><li><a target="_blank" href="http://www1.odcr.com/">Search Non-OSCN Court Records</a></li></ol></li><li class="sub-nav-group span3"><h3>Court Records</h3><ol><li><a href="http://www.oscn.net/applications/oscn/simplehelp.asp?helpcontextid=5">Available Court Records</a></li><!-- <li><a href="#">Look-up Case number</a></li> --><li><a href="http://www.oscn.net/applications/oscn/simplehelp.asp?helpcontextid=4">Court Records Help</a></li></ol></li><li class="sub-nav-group span6"><h3>Court Reports</h3><ol><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=rptCivilCasesWithTrialDispositionsMAIN">Civil Cases with Trial Dispositions</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketJudgeAll">Daily Docket - All Events - Specific Judge</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketJudgeCaseTypeAll">Daily Docket - All Events - Specific Judge - Specific Case Type</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketCaseTypeAll">Daily Docket - All Events - Specific Case Type</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketEventAll">Daily Docket - Specific Event</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketJudgeEventAll">Daily Docket - Specific Event - Specific Judge</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=WebJudicialDocketJudgeCaseTypeEvent">Daily Docket - Specific Event - Specific Judge - Specific Case Type</a></li><li><a href="http://www.oscn.net/applications/oscn/report.asp?report=DailyFilings">Daily Filings by County</a></li></ol></li></ol></div></li>
<li class="nav-item" id="quick-links"><a href="http://www.oscn.net/v4/quicklinks/" id="accessible-megamenu-1515985428369-14" aria-haspopup="true" aria-controls="accessible-megamenu-1515985428369-15" aria-expanded="false">Quick Links</a><div class="sub-nav container-fluid" style="display: block;" id="accessible-megamenu-1515985428369-15" role="group" aria-expanded="false" aria-hidden="true" aria-labelledby="accessible-megamenu-1515985428369-14"><ol class="row-fluid"><li class="sub-nav-group span3"><h3>Forms</h3><ol><li><a href="http://www.oscn.net/static/forms/scforms.asp">Supreme Court and Court of Civil Appeals</a></li><li><a target="_blank" href="http://www.okcca.net/forms/index.html">Court of Criminal Appeals</a></li><li><a href="http://www.oscn.net/static/forms/AOCforms.asp">District Courts (Administrative Office of the Courts)</a></li><li><a href="http://www.oscn.net/static/forms/districtcover.asp">District Courts of Oklahoma Cover Sheets</a></li><li><a href="http://www.oscn.net/static/forms/childsupport.asp">Child Support</a></li><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/forms/aoc_form/adobe/dom.-standard-visit-sch.-advis.%20gdelns.pdf">Standard Visitation Schedule & Advisory Guidelines<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/UniformOrders/default.aspx">Juvenile Courts</a></li><li><a target="_blank" href="http://www.owcc.state.ok.us/">Workers' Compensation</a></li><li><a target="_blank" href="http://www.sos.state.ok.us/">Oklahoma Secretary of State</a></li><li><a target="_blank" class="external-link" href="http://oklaw.org/legal-aid-self-help-forms">Legal Aid Self-Help Forms</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/interpreter.asp">Certified Courtroom Interpreters</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/csr.asp">Certified Shorthand Reporters</a></li></ol></li><li class="sub-nav-group span3"><h3>Statewide Registries</h3><ol><li><a href="http://www.oscn.net/applications/oscn/DeliverDocument.asp?CiteID=468488">Statewide Registry of Licensed Private Process Servers</a></li><li><a href="http://www.oscn.net/applications/oscn/DeliverDocument.asp?CiteID=380115">Registry of Frivolous or Malicious Appeals</a></li><li><a href="http://www.oscn.net/applications/oscn/DeliverDocument.asp?CiteID=458214">Full Faith and Credit of Tribal Courts</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/interpreter.asp">Certified Courtroom Interpreters</a></li><li><a href="http://www.oscn.net/static/forms/aoc_forms/csr.asp">Certified Shorthand Reporters</a></li><li><a target="_blank" href="http://sors.doc.state.ok.us/svor/f?p=103:1:231254177081259">Sex Offender Registry</a></li><li><a class="pdf-link" target="_blank" href="http://www.ok.gov/obndd/documents/METH09-22.pdf">Meth Registry<span class="sr-only">PDF</span></a></li></ol><h3>Reports</h3><ol><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/static/annual-report-2016.pdf">Annual Report<span class="sr-only">PDF</span></a></li><li><a href="http://www.oscn.net/applications/oscn/DeliverDocument.asp?CiteID=468488">Statewide Registry of Licensed Private Process Servers</a></li><li><a href="http://www.oscn.net/dockets/">District Court Reports</a></li><li><a href="http://www.oscn.net/static/divorce-impact-educational-programs-report-FY16.pdf" class="pdf-link" target="_blank">Divorce Impact Educational Program<span class="sr-only">PDF</span></a></li></ol> </li><li class="sub-nav-group span3"><h3>Self Help</h3><ol><li><a href="http://www.oscn.net/static/forms/aoc_forms/protectiveorders.asp">Protective Orders</a></li><li><a href="http://www.oscn.net/static/forms/childsupport.asp">Child Support</a></li><li><a class="pdf-link" target="_blank" href="http://www.oscn.net/forms/aoc_form/adobe/dom.-standard-visit-sch.-advis.%20gdelns.pdf">Standard Visitation Schedule & Advisory Guidelines<span class="sr-only">PDF</span></a></li><li><a class="external-link" target="_blank" href="http://oklaw.org/legal-aid-self-help-forms">Legal Aid Self-Help Forms</a></li></ol><h3>Related Links</h3><ol><li><a target="_blank" href="http://www.okbar.org/">Oklahoma Bar Association</a></li><li><a target="_blank" href="http://www.oklegislature.gov/">Oklahoma State Legislature</a></li><li><a target="_blank" href="http://www.state.ok.us/">Oklahoma Government Website</a></li><li><a target="_blank" href="https://www.sos.ok.gov/">Oklahoma Secretary of State</a></li><li><a target="_blank" href="http://www.judicialfamilyinstitute.org/">Judicial Family Institute</a></li><li><a target="_blank" href="http://www.ok.gov/governor/">Oklahoma Governor's Office</a></li><li><a target="_blank" href="http://www.okbar.org/public/Courts/CouncilonJudicialComplaints.aspx">Council on Judicial Complaints</a></li></ol></li><li class="sub-nav-group span3"><h3>Help</h3><ol><li><a href="http://www.oscn.net/applications/oscn/SimpleHelp.asp?HelpContextID=4">Court Records Help</a></li><li><a href="http://www.oscn.net/applications/oscn/SimpleHelp.asp?HelpContextID=14">Legal Research</a></li></ol></li></ol></div></li>
</ol>
</nav>
</div>
</div>
<div id="oscn-content" style="padding-bottom: 259px;"><div class="sized results">
<div class="resultsTitle">
<span style="float: left;"><a href="http://www.oscn.net/dockets/Default.aspx" title="Back to Court Records">Court Records</a></span>
Search Results
<span style="float: right;"><a href="http://www.oscn.net/dockets/Search.aspx" title="Start a New Search">New Search</a></span>
</div>
<table class="caseCourtTable" id="TABLE_1">
<caption class="caseCourtHeader">alfalfa County<span class="timeTaken">Found 337 Records in 65ms.</span></caption>
<tbody><tr class="resultTableHeaders">
<th class="caseNo" scope="col" abbr="case Number" width="15%"><nobr><a href="#" onclick="location.replace('/dockets/Results.aspx?db=alfalfa&FiledDateL=11%2f01%2f2017&FiledDateH=11%2f30%2f2017&sc=CASENUMBER&sd=ASC'); return false;" title="Sort search results by Case Number.">Case Number<img src="oscn_files/information_icon.png" style="width: 12px; height: 12px; padding-left: 5px;" alt="This column is sortable." title="This column is sortable."></a></nobr></th>
<th class="caseDateFiled" scope="col" abbr="Date Filed" width="10%"><nobr><a href="#" onclick="location.replace('/dockets/Results.aspx?db=alfalfa&FiledDateL=11%2f01%2f2017&FiledDateH=11%2f30%2f2017&sc=DATEFILED&sd=DESC'); return false;" title="Sort search results by Date Filed in descending order."><em>Date Filed</em><img src="oscn_files/sort_up_icon.png" style="width: 12px; height: 12px; padding-left: 5px;" alt="Sort search results by Date Filed in descending order." title="Sort search results by Date Filed in descending order."></a></nobr></th>
<th class="caseStyle" scope="col" abbr="Style" width="48%"><nobr><a href="#" onclick="location.replace('/dockets/Results.aspx?db=alfalfa&FiledDateL=11%2f01%2f2017&FiledDateH=11%2f30%2f2017&sc=CASESTYLE&sd=ASC'); return false;" title="Sort search results by Style.">Style<img src="oscn_files/information_icon.png" style="width: 12px; height: 12px; padding-left: 5px;" alt="This column is sortable." title="This column is sortable."></a></nobr></th>
<th class="caseParty" scope="col" abbr="Party"><nobr><a href="#" onclick="location.replace('/dockets/Results.aspx?db=alfalfa&FiledDateL=11%2f01%2f2017&FiledDateH=11%2f30%2f2017&sc=PARTYNAME&sd=ASC'); return false;" title="Sort search results by Found Party.">Found Party<img src="oscn_files/information_icon.png" style="width: 12px; height: 12px; padding-left: 5px;" alt="This column is sortable." title="This column is sortable."></a></nobr></th>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">TR-2017-00584</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">TR-2017-00585</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">TR-2017-00584</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>LLOYD, GLENNETTA DAWN (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">TR-2017-00585</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>LLOYD, GLENNETTA DAWN (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">TR-2017-00584</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>MATHEWS, CARTER (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">TR-2017-00585</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>MATHEWS, CARTER (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">TR-2017-00584</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00584&cmid=97656">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">TR-2017-00585</a></td>
<td>11/01/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00585&cmid=97657">STATE OF OKLAHOMA V. GLENNETTA DAWN LLOYD</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">CM-2017-00145</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">STATE OF OKLAHOMA V. JEREMY DAVID WILLIAMS</a></td>
<td>ALFALFA CO. SHERIFF DEPT. (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">CS-2017-00035</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">MIDLAND FUNDING LLC V. JAIDEN ALLEN</a></td>
<td>ALLEN, JAIDEN (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">CJ-2017-00023</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">ALLY BANK V. ROBERT FRANKLIN CUNNINGHAM SR, ET. AL.</a></td>
<td>ALLY BANK (Plaintiff)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">CF-2017-00066</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>CHEROKEE POLICE DEPARTMENT (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">CF-2017-00067</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>CHEROKEE POLICE DEPARTMENT (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">CM-2017-00143</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>CHEROKEE POLICE DEPARTMENT (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">CM-2017-00144</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>CHEROKEE POLICE DEPARTMENT (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">CJ-2017-00023</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">ALLY BANK V. ROBERT FRANKLIN CUNNINGHAM SR, ET. AL.</a></td>
<td>CUNNINGHAM, CARLENE (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">CJ-2017-00023</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">ALLY BANK V. ROBERT FRANKLIN CUNNINGHAM SR, ET. AL.</a></td>
<td>CUNNINGHAM, ROBERT FRANKLIN SR (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">CF-2017-00066</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">CF-2017-00067</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">CM-2017-00143</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">CM-2017-00144</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">CM-2017-00145</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">STATE OF OKLAHOMA V. JEREMY DAVID WILLIAMS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">CJ-2017-00023</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00023&cmid=100965">ALLY BANK V. ROBERT FRANKLIN CUNNINGHAM SR, ET. AL.</a></td>
<td>HOOD & STACY, P.A. (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">CF-2017-00067</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>MCGEE, FRITZ (ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">CM-2017-00144</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>MCGEE, FRITZ (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">CF-2017-00066</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>MCNEIL, RYAN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">CF-2017-00067</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>MCNEIL, RYAN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">CM-2017-00143</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>MCNEIL, RYAN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">CM-2017-00144</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>MCNEIL, RYAN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">CS-2017-00035</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">MIDLAND FUNDING LLC V. JAIDEN ALLEN</a></td>
<td>MIDLAND FUNDING LLC (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">CF-2017-00067</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00067&cmid=99635">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>NABORS, KENNETH FELTON (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">CM-2017-00144</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00144&cmid=99652">STATE OF OKLAHOMA V. KENNETH FELTON NABORS</a></td>
<td>NABORS, KENNETH FELTON (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">CF-2017-00066</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>NABORS, KIMBERLY LA SHAI (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">CM-2017-00143</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>NABORS, KIMBERLY LA SHAI (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">CS-2017-00035</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00035&cmid=94061">MIDLAND FUNDING LLC V. JAIDEN ALLEN</a></td>
<td>NIXON, WILLIAM L. JR. (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">CM-2017-00145</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">STATE OF OKLAHOMA V. JEREMY DAVID WILLIAMS</a></td>
<td>NUSSER, LOREN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">CM-2017-00145</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00145&cmid=99653">STATE OF OKLAHOMA V. JEREMY DAVID WILLIAMS</a></td>
<td>WILLIAMS, JEREMY DAVID (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">CF-2017-00066</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CF-2017-00066&cmid=99634">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>WOMBLE, MICHAEL (ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">CM-2017-00143</a></td>
<td>11/03/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CM-2017-00143&cmid=99651">STATE OF OKLAHOMA V. KIMBERLY LA SHAI NABORS</a></td>
<td>WOMBLE, MICHAEL (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">WL-2017-00040</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">STATE OF OKLAHOMA V. </a></td>
<td> (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">TR-2017-00586</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">STATE OF OKLAHOMA V. SHAWN KIETH DIRDEN</a></td>
<td>ALFALFA CO. SHERIFF DEPT. (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">CJ-2017-00024</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">DOUGLAS EARL HUGHES V. JESSICA R. DILLON MERKLE, ET. AL.</a></td>
<td>BAYS, JEREMY (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">WL-2017-00025</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">WL-2017-00026</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">WL-2017-00027</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">WL-2017-00028</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">WL-2017-00029</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">WL-2017-00030</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">WL-2017-00031</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">STATE OF OKLAHOMA V. PORSHA LEANNE STATUM</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">WL-2017-00032</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">STATE OF OKLAHOMA V. TANNER MICAH MATNEY</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">WL-2017-00033</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">STATE OF OKLAHOMA V. CASEY HARRIS STINNET</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">WL-2017-00034</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">WL-2017-00035</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">WL-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">STATE OF OKLAHOMA V. RYAN KEITH KUCKENBECKER</a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">WL-2017-00040</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">STATE OF OKLAHOMA V. </a></td>
<td>BICKERSTAFF, BEN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">WL-2017-00025</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">WL-2017-00026</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">WL-2017-00027</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">WL-2017-00028</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">WL-2017-00029</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">WL-2017-00030</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">WL-2017-00031</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">STATE OF OKLAHOMA V. PORSHA LEANNE STATUM</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">WL-2017-00033</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">STATE OF OKLAHOMA V. CASEY HARRIS STINNET</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">WL-2017-00034</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">WL-2017-00035</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">WL-2017-00040</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">STATE OF OKLAHOMA V. </a></td>
<td>DEPARTMENT OF WILDLIFE (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">TR-2017-00586</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">STATE OF OKLAHOMA V. SHAWN KIETH DIRDEN</a></td>
<td>DIRDEN, SHAWN KIETH (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">CS-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">FIRST NATIONAL BANK OF OMAHA V. BILLY STANLEY</a></td>
<td>FIRST NATIONAL BANK OF OMAHA (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">TR-2017-00586</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">STATE OF OKLAHOMA V. SHAWN KIETH DIRDEN</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">WL-2017-00025</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">WL-2017-00026</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">WL-2017-00027</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">WL-2017-00028</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">WL-2017-00029</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">WL-2017-00030</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">WL-2017-00031</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">STATE OF OKLAHOMA V. PORSHA LEANNE STATUM</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">WL-2017-00032</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">STATE OF OKLAHOMA V. TANNER MICAH MATNEY</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">WL-2017-00033</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">STATE OF OKLAHOMA V. CASEY HARRIS STINNET</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">WL-2017-00034</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">WL-2017-00035</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">WL-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">STATE OF OKLAHOMA V. RYAN KEITH KUCKENBECKER</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">WL-2017-00040</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00040&cmid=95017">STATE OF OKLAHOMA V. </a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">WL-2017-00034</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00034&cmid=95011">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>HOGG, MICHAEL DAMANE JR (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">WL-2017-00035</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00035&cmid=95012">STATE OF OKLAHOMA V. MICHAEL DAMANE HOGG JR</a></td>
<td>HOGG, MICHAEL DAMANE JR (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">CS-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">FIRST NATIONAL BANK OF OMAHA V. BILLY STANLEY</a></td>
<td>HOOD & STACY, P.A. (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">CJ-2017-00024</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">DOUGLAS EARL HUGHES V. JESSICA R. DILLON MERKLE, ET. AL.</a></td>
<td>HUGHES, DOUGLAS EARL (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">WL-2017-00028</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00028&cmid=98589">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>KINGCADE, ERION NICHOLAS (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">WL-2017-00029</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00029&cmid=98211">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>KINGCADE, ERION NICHOLAS (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">WL-2017-00030</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00030&cmid=98590">STATE OF OKLAHOMA V. ERION NICHOLAS KINGCADE</a></td>
<td>KINGCADE, ERION NICHOLAS (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">WL-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00036&cmid=95013">STATE OF OKLAHOMA V. RYAN KEITH KUCKENBECKER</a></td>
<td>KUCKENBECKER, RYAN KEITH (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">WL-2017-00032</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">STATE OF OKLAHOMA V. TANNER MICAH MATNEY</a></td>
<td>MATNEY, TANNER MICAH (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">CJ-2017-00024</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">DOUGLAS EARL HUGHES V. JESSICA R. DILLON MERKLE, ET. AL.</a></td>
<td>MERKLE, JESSICA R. DILLON (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">WL-2017-00032</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00032&cmid=95009">STATE OF OKLAHOMA V. TANNER MICAH MATNEY</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">CJ-2017-00024</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00024&cmid=94317">DOUGLAS EARL HUGHES V. JESSICA R. DILLON MERKLE, ET. AL.</a></td>
<td>PRO SE (ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">TR-2017-00586</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00586&cmid=97658">STATE OF OKLAHOMA V. SHAWN KIETH DIRDEN</a></td>
<td>ROCKENBACH, T J (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">WL-2017-00025</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00025&cmid=95002">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>SEAMAN, BRYSEN KEITH VINCENT (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">WL-2017-00026</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00026&cmid=95003">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>SEAMAN, BRYSEN KEITH VINCENT (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">WL-2017-00027</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00027&cmid=95004">STATE OF OKLAHOMA V. BRYSEN KEITH VINCENT SEAMAN</a></td>
<td>SEAMAN, BRYSEN KEITH VINCENT (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">CS-2017-00036</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00036&cmid=100966">FIRST NATIONAL BANK OF OMAHA V. BILLY STANLEY</a></td>
<td>STANLEY, BILLY (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">WL-2017-00031</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00031&cmid=95008">STATE OF OKLAHOMA V. PORSHA LEANNE STATUM</a></td>
<td>STATUM, PORSHA LEANNE (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">WL-2017-00033</a></td>
<td>11/06/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=WL-2017-00033&cmid=95010">STATE OF OKLAHOMA V. CASEY HARRIS STINNET</a></td>
<td>STINNET, CASEY HARRIS (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">CS-2017-00037</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">N.A. CAPITAL ONE BANK (USA) V. GLENDA D ROSE</a></td>
<td>CAPITAL ONE BANK (USA), N.A. (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">TR-2017-00591</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">STATE OF OKLAHOMA V. RICK J FITZGERALD</a></td>
<td>FITZGERALD, RICK J (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00018&cmid=98266">PB-2017-00018</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00018&cmid=98266">IN THE MATTER OF: THE ESTATE OF HOLLEY LYNN HAMMER, DECEASED</a></td>
<td>HAMMER, HOLLEY LYNN (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">TR-2017-00587</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">STATE OF OKLAHOMA V. BERNARD ELVIN WHEELER II</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">TR-2017-00588</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">STATE OF OKLAHOMA V. JAYCI DEANN HOWERTON</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">TR-2017-00589</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">STATE OF OKLAHOMA V. DAVID LEE SHIELDS III</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">TR-2017-00590</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">STATE OF OKLAHOMA V. BENJAMIN THOMAS ROWLAND</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">TR-2017-00591</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">STATE OF OKLAHOMA V. RICK J FITZGERALD</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">TR-2017-00592</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">STATE OF OKLAHOMA V. FRANQUY LYNN SOLIS</a></td>
<td>HICKMAN, MEGAN (DISTRICT ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">TR-2017-00588</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">STATE OF OKLAHOMA V. JAYCI DEANN HOWERTON</a></td>
<td>HOWERTON, JAYCI DEANN (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">TR-2017-00587</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">STATE OF OKLAHOMA V. BERNARD ELVIN WHEELER II</a></td>
<td>LANCASTER, DARRIN (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00018&cmid=98266">PB-2017-00018</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00018&cmid=98266">IN THE MATTER OF: THE ESTATE OF HOLLEY LYNN HAMMER, DECEASED</a></td>
<td>MCGEE, FRITZ (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00019&cmid=98267">PB-2017-00019</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00019&cmid=98267">IN THE MATTER OF: THE ESTATE OF ANN RETHERFORD, DECEASED</a></td>
<td>MCGEE, FRITZ (ATTORNEY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">TR-2017-00588</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">STATE OF OKLAHOMA V. JAYCI DEANN HOWERTON</a></td>
<td>MORGAN, BROCK (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">TR-2017-00589</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">STATE OF OKLAHOMA V. DAVID LEE SHIELDS III</a></td>
<td>MORGAN, BROCK (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">TR-2017-00590</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">STATE OF OKLAHOMA V. BENJAMIN THOMAS ROWLAND</a></td>
<td>MORGAN, BROCK (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">TR-2017-00591</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">STATE OF OKLAHOMA V. RICK J FITZGERALD</a></td>
<td>MORGAN, BROCK (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">TR-2017-00592</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">STATE OF OKLAHOMA V. FRANQUY LYNN SOLIS</a></td>
<td>MORGAN, BROCK (ARRESTING OFFICER)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">TR-2017-00587</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">STATE OF OKLAHOMA V. BERNARD ELVIN WHEELER II</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">TR-2017-00588</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00588&cmid=98442">STATE OF OKLAHOMA V. JAYCI DEANN HOWERTON</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">TR-2017-00589</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">STATE OF OKLAHOMA V. DAVID LEE SHIELDS III</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">TR-2017-00590</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">STATE OF OKLAHOMA V. BENJAMIN THOMAS ROWLAND</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">TR-2017-00591</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00591&cmid=97663">STATE OF OKLAHOMA V. RICK J FITZGERALD</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">TR-2017-00592</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">STATE OF OKLAHOMA V. FRANQUY LYNN SOLIS</a></td>
<td>OKLAHOMA HIGHWAY PATROL (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00019&cmid=98267">PB-2017-00019</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=PB-2017-00019&cmid=98267">IN THE MATTER OF: THE ESTATE OF ANN RETHERFORD, DECEASED</a></td>
<td>RETHERFORD, ANN (Plaintiff)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">CS-2017-00037</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">N.A. CAPITAL ONE BANK (USA) V. GLENDA D ROSE</a></td>
<td>ROGERS, JOSEPH H. III (ATTORNEY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">CS-2017-00037</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CS-2017-00037&cmid=99592">N.A. CAPITAL ONE BANK (USA) V. GLENDA D ROSE</a></td>
<td>ROSE, GLENDA D (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">TR-2017-00590</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00590&cmid=100459">STATE OF OKLAHOMA V. BENJAMIN THOMAS ROWLAND</a></td>
<td>ROWLAND, BENJAMIN THOMAS (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">TR-2017-00589</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00589&cmid=97661">STATE OF OKLAHOMA V. DAVID LEE SHIELDS III</a></td>
<td>SHIELDS, DAVID LEE III (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">TR-2017-00592</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00592&cmid=99150">STATE OF OKLAHOMA V. FRANQUY LYNN SOLIS</a></td>
<td>SOLIS, FRANQUY LYNN (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">TR-2017-00587</a></td>
<td>11/07/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00587&cmid=97659">STATE OF OKLAHOMA V. BERNARD ELVIN WHEELER II</a></td>
<td>WHEELER, BERNARD ELVIN II (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">CJ-2017-00025</a></td>
<td>11/08/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">LYNN ZABILL, ET. AL. V. SANDRIDGE EXPLORATION & PRODUC, ET. AL.</a></td>
<td> (Defendant)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00593&cmid=97665">TR-2017-00593</a></td>
<td>11/08/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00593&cmid=97665">STATE OF OKLAHOMA V. JUDITH MAPLES</a></td>
<td>ALFALFA CO. SHERIFF DEPT. (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00594&cmid=98007">TR-2017-00594</a></td>
<td>11/08/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=TR-2017-00594&cmid=98007">STATE OF OKLAHOMA V. PEGGIE SUE SIMONS</a></td>
<td>ALFALFA CO. SHERIFF DEPT. (ARRESTING AGENCY)</td>
</tr>
<tr class="resultTableRow evenRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">CJ-2017-00025</a></td>
<td>11/08/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">LYNN ZABILL, ET. AL. V. SANDRIDGE EXPLORATION & PRODUC, ET. AL.</a></td>
<td>ARP OKLAHOMA, LLC (Defendant)</td>
</tr>
<tr class="resultTableRow oddRow">
<td><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">CJ-2017-00025</a></td>
<td>11/08/2017</td>
<td class="shortStyle"><a href="http://www.oscn.net/dockets/GetCaseInformation.aspx?db=alfalfa&number=CJ-2017-00025&cmid=100363">LYNN ZABILL, ET. AL. V. SANDRIDGE EXPLORATION & PRODUC, ET. AL.</a></td>
<td>BAILEY, MICHAEL (Plaintiff)</td>