-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpenal-code.ts
More file actions
1558 lines (1544 loc) · 69.6 KB
/
penal-code.ts
File metadata and controls
1558 lines (1544 loc) · 69.6 KB
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
type PenalCodeClass = "Felony" | "Misdemeanor" | "Infraction";
interface PenalCodeStatute {
id: number;
title: string;
class: PenalCodeClass;
months: number;
fine: number;
description: string;
}
interface PenalCode {
id: number;
title: string;
statutes: Record<number, PenalCodeStatute>;
}
const PenalCode: PenalCode[] = [
{
id: 0,
title: "Offenses Against Persons",
statutes: {
1: {
title: "Simple Assault",
class: "Misdemeanor",
id: 1001,
months: 1,
fine: 150,
description: "A person who intentionally puts another in the reasonable belief of imminent physical harm or offensive contact is guilty under this code section.",
},
2: {
title: "Assault",
class: "Misdemeanor",
id: 1002,
months: 10,
fine: 285,
description: "A person who intentionally puts another in the reasonable belief of imminent serious physical harm or offensive contact is guilty under this code section.",
},
3: {
title: "Aggravated Assault",
class: "Felony",
id: 1003,
months: 15,
fine: 325,
description: "A person who uses intentional and unlawful force or violence to cause physical harm to another person is guilty under this code section.",
},
4: {
title: "Assault with a Deadly Weapon",
class: "Felony",
id: 1004,
months: 20,
fine: 475,
description: "A person who attempts to cause or threaten immediate harm to another while using a weapon, tool, or other dangerous item to communicate that threat is guilty under this code section.",
},
5: {
title: "Battery",
class: "Misdemeanor",
id: 1005,
months: 15,
fine: 275,
description: "A person who unlawfully applies force directly or indirectly upon another person or their personal belongings, causing bodily injury or offensive contact is guilty under this code section.",
},
6: {
title: "Aggravated Battery",
class: "Felony",
id: 1006,
months: 20,
fine: 375,
description: "A person who intentionally and unlawfully applies force directly or indirectly upon another person or their personal belongings, causing bodily injury or offensive contact is guilty under this code section.",
},
7: {
title: "Involuntary Manslaughter",
class: "Felony",
id: 1007,
months: 20,
fine: 750,
description: " A person who unintentionally kills another, with or without a quarrel or heat of passion is guilty under this code section. A person who, through a criminal accident or negligence, causes someones death is guilty under this code section.",
},
8: {
title: "Vehicular Manslaughter",
class: "Felony",
id: 1008,
months: 25,
fine: 750,
description: "A person who, while operating a vehicle, through a criminal accident or negligence, causes someones death is guilty under this code section.",
},
9: {
title: "Attempted Murder of a Civilian",
class: "Felony",
id: 1009,
months: 30,
fine: 1500,
description: "A person who takes a direct step towards killing another person and intended to kill that person is guilty under this code section. A person who is hired to murder, slay, or execute another person for material or financial gain, even if a direct step towards the killing is not taken, is guilty under this code section.",
},
10: {
title: "Second Degree Murder",
class: "Felony",
id: 1010,
months: 40,
fine: 1750,
description: "A person who unlawfully kills another person either by intentional malice or reckless disregard that occurs in the spur of the moment is guilty under this code section.",
},
11: {
title: "Accessory to Second Degree Murder",
class: "Felony",
id: 1011,
months: 25,
fine: 500,
description: "A person who assists another person to commit murder of the second degree is guilty under this code section.",
},
12: {
title: "First Degree Murder",
class: "Felony",
id: 1012,
months: 50,
fine: 2500,
description: "A person who commits the intentional killing which is done in a way that is willful, deliberate and premeditated is guilty under this code section. Additionally, a person who kills another individual while engaging in a felony offense, that has been proved to be a premeditated act, is guilty under this code section.",
},
13: {
title: "Accessory to First Degree Murder",
class: "Felony",
id: 1013,
months: 35,
fine: 1500,
description: "A person who assists another person to commit murder of the first degree is guilty under this code section.",
},
14: {
title: "Murder of a Public Servant or Peace Officer",
class: "Felony",
id: 1014,
months: 120,
fine: 12000,
description: "A person who commits the intentional killing of a public servant or peace officer, while in the execution of their duties, in a way that is willful, deliberate and premeditated is guilty under this code section.",
},
15: {
title: "Attempted Murder of a Public Servant or Peace Officer",
class: "Felony",
id: 1015,
months: 80,
fine: 9500,
description: "A person who attempts to unlawfully kill or cause great bodily harm to a public servant or peace officer, while in the execution of their duties, is guilty under this code section.",
},
16: {
title: "Accessory to the Murder of a Public Servant or Peace Officer",
class: "Felony",
id: 1016,
months: 50,
fine: 5000,
description: "A person who assists another person who attempts to unlawfully kill or cause great bodily harm to a public servant or peace officer, while in the execution of their duties, is guilty under this code section.",
},
17: {
title: "Unlawful Imprisonment",
class: "Misdemeanor",
id: 1017,
months: 1,
fine: 300,
description: "A person who intentionally restricts anothers freedom of movement without their consent is guilty under this code section",
},
18: {
title: "Kidnapping",
class: "Felony",
id: 1018,
months: 15,
fine: 500,
description: "A person who abducts or confines another individual against their will by force, threat, or deception, is guilty under this code section. ",
},
19: {
title: "Accessory to Kidnapping",
class: "Misdemeanor",
id: 1019,
months: 7,
fine: 150,
description: "A person who, without directly committing the act of kidnapping, knowingly aids, assists, encourages, or facilitates the commission of the kidnapping by another person is guilty under this code section.",
},
20: {
title: "Attempted Kidnapping",
class: "Felony",
id: 1020,
months: 10,
fine: 150,
description: "A person who takes a direct step towards the kidnapping of another person is guilty under this code section.",
},
21: {
title: "Hostage Taking",
class: "Felony",
id: 1021,
months: 20,
fine: 750,
description: "A person who kidnaps someone in an attempt to gain the power to attain something, with threat of their life is guilty under this code section.",
},
22: {
title: "Accessory to Hostage Taking",
class: "Misdemeanor",
id: 1022,
months: 10,
fine: 150,
description: "A person who helps someone commit hostage taking is guilty under this code section.",
},
23: {
title: "Unlawful Imprisonment of a Public Servant or Peace Officer.",
class: "Felony",
id: 1023,
months: 25,
fine: 750,
description: "A person who intentionally restricts a public servant or peace officers freedom of movement without their consent is guilty under this code section",
},
24: {
title: "Criminal Threats",
class: "Misdemeanor",
id: 1024,
months: 1,
fine: 200,
description: "A person who communicates to another that they will physically harm or kill such other, placing such other in a reasonable state of fear for their own safety is guilty under this code section. Such communication can be not just verbal, but also in writing or transmitted through other media is guilty under this code section.",
},
25: {
title: "Reckless Endangerment",
class: "Misdemeanor",
id: 1025,
months: 10,
fine: 175,
description: "A person who consciously disregards the potential risks or dangers of their actions which create a substantial serious risk of injury to another person is guilty under this code section.",
},
26: {
title: "Gang Related Enhancement",
class: "Felony",
id: 1026,
months: 10,
fine: 500,
description: "This charge is added to another charge, when the individual’s actions are connected to or motivated by gang activity, which the individual is associated with.",
},
27: {
title: "Desecration of a Human Corpse",
class: "Felony",
id: 1027,
months: 30,
fine: 1000,
description: "Any act committed after the death of a human being including, but not limited to, dismemberment, disfigurement, mutilation, burning, or any act committed to cause the dead body to be devoured, scattered or dissipated",
},
28: {
title: "Torture",
class: "Felony",
id: 1028,
months: 20,
fine: 1500,
description: "A person who intentionally causes extreme pain and suffering to someone for reasons such as punishment, extracting a confession, interrogation, revenge, extortion, or any sadistic purpose, is guilty under this code section.",
},
29: {
title: "Battery on a Public Servant or Peace Officer",
class: "Felony",
id: 1029,
months: 25,
fine: 1250,
description: "A person who intentionally and unlawfully applies force directly or indirectly upon a public servant or peace officer, while in the execution of their duties, is guilty under this code section.",
},
},
},
{
id: 1,
title: "Offenses Involving Theft",
statutes: {
1: {
title: "Petty Theft",
class: "Infraction",
id: 2001,
months: 0,
fine: 400,
description: "A person who steals or takes the personal property of another worth $2000 or less is guilty under this code section.",
},
2: {
title: "Grand Theft",
class: "Misdemeanor",
id: 2002,
months: 10,
fine: 850,
description: "A person who steals or takes the personal property of another worth more than $2,000 but less than $15,000 or a firearm of any value is guilty under this code section.",
},
3: {
title: "Grand Theft Auto A",
class: "Felony",
id: 2003,
months: 10,
fine: 120,
description: "A person who commits the theft of any motor vehicle, no matter the value is guilty under this code section.",
},
4: {
title: "Grand Theft Auto B",
class: "Felony",
id: 2004,
months: 15,
fine: 400,
description: "A person who commits the theft of any motor vehicle, no matter the value, while armed or committing another felony, is guilty under this code section.",
},
5: {
title: "Carjacking",
class: "Felony",
id: 2005,
months: 20,
fine: 400,
description: "A person who commits the theft of a motor vehicle from another person while it is being operated is guilty under this code section.",
},
6: {
title: "Burglary",
class: "Misdemeanor",
id: 2006,
months: 10,
fine: 500,
description: "A person who enters a structure without the permission of the owner or agent of the owner, typically with the intention of committing a criminal offense, is guilty under this code section.",
},
7: {
title: "Robbery",
class: "Felony",
id: 2007,
months: 25,
fine: 1000,
description: "A person who, acting alone or in concert with others, unlawfully takes personal property belonging to an individual or business from another person or their immediate presence, against their will, by means of force, intimidation, or fear, is guilty under this code section.",
},
8: {
title: "Accessory to Robbery",
class: "Felony",
id: 2008,
months: 12,
fine: 200,
description: "A person who, without directly committing the act of robbery, knowingly aids, assists, abets, or facilitates the commission of a robbery by another person is guilty under this code section.",
},
9: {
title: "Attempted Robbery",
class: "Felony",
id: 2009,
months: 15,
fine: 300,
description: "A person who, acting alone or in concert with others, attempts to unlawfully take personal property belonging to an individual or business from another person or their immediate presence, against their will, by means of force, intimidation, or fear, is guilty under this code section.",
},
10: {
title: "Armed Robbery",
class: "Felony",
id: 2010,
months: 25,
fine: 1500,
description: "A person who, acting alone or in concert with others, unlawfully takes personal property belonging to an individual or business from another person or their immediate presence, against their will, by means of force, intimidation, or fear, while using, displaying, or brandishing a firearm or other deadly weapon, is guilty under this code section.",
},
11: {
title: "Accessory to Armed Robbery",
class: "Felony",
id: 2011,
months: 12,
fine: 300,
description: "A person who, without directly committing the act of armed robbery, knowingly aids, assists, abets, or facilitates the commission of an armed robbery by another person, is guilty under this code section.",
},
12: {
title: "Attempted Armed Robbery",
class: "Felony",
id: 2012,
months: 25,
fine: 300,
description: "A person who, acting alone or in concert with others, attempts to unlawfully take personal property belonging to an individual or business from another person or their immediate presence, against their will, by means of force, intimidation, or fear, while using, displaying, or brandishing a firearm or other deadly weapon, is guilty under this code section.",
},
13: {
title: "Grand Larceny",
class: "Felony",
id: 2013,
months: 30,
fine: 1000,
description: "A person who steals or takes the personal property of another worth more than $15000 is guilty under this code section.",
},
14: {
title: "Leaving Without Paying",
class: "Infraction",
id: 2014,
months: 0,
fine: 300,
description: "A person who leaves a billed premises without paying the total amount of their bill is guilty under this code section.",
},
15: {
title: "Possession of Nonlegal Currency",
class: "Misdemeanor",
id: 2015,
months: 10,
fine: 750,
description: "A person who is in possession of, or attempts to use a fraudulent currency in the attempt to pass it off as legal tender is guilty under this code section. The fraudulent currency is subject to confiscation.",
},
16: {
title: "Possession of Government-Issued Items",
class: "Misdemeanor",
id: 2016,
months: 20,
fine: 1000,
description: "A person who is unlawfully in possession of a goverment issued firearm, vehicle, or other item is guilty under this code section.",
},
17: {
title: "Possession of Items Used in the Commission of a Crime",
class: "Misdemeanor",
id: 2017,
months: 10,
fine: 500,
description: "A person in possession of tools used by that person to commit another crime, such as a firearm or burglary tools, is guilty under this code section.",
},
18: {
title: "Sale of Items Used in the Commission of a Crime",
class: "Misdemeanor",
id: 2018,
months: 15,
fine: 100,
description: "A person who is in possession of, or attempts to use a fraudulent currency in the attempt to pass it off as legal tender is guilty under this code section. The fraudulent currency is subject to confiscation.",
},
19: {
title: "Theft of an Aircraft",
class: "Felony",
id: 2019,
months: 40,
fine: 5000,
description: "A person who commits the theft of an aircraft is guilty under this code section.",
},
20: {
title: "Criminal Possession of Stolen Property",
class: "Misdemeanor",
id: 2020,
months: 10,
fine: 200,
description: "A person who has possession of stolen items, with knowledge that the item is stolen, is guilty under this code section.",
},
21: {
title: "Theft of a Law Enforcement Vehicle",
class: "Felony",
id: 2021,
months: 60,
fine: 10000,
description: "A person who commits the theft of any motor vehicle owned by a law enforcement agency is guilty under this code section.",
},
},
},
{
id: 2,
title: "Offenses Involving Fraud",
statutes: {
1: {
title: "Impersonating",
class: "Misdemeanor",
id: 3001,
months: 25,
fine: 1250,
description: "A person who attempts to assume the identity of someone else is guilty under this code section.",
},
2: {
title: "Impersonating a Peace Officer or Public Servant",
class: "Felony",
id: 3002,
months: 30,
fine: 2050,
description: "A person who attempts to assume the identity, or state that they are a peace officer or public servant, when they are not, are guilty under this code section.",
},
3: {
title: "Impersonating a Judge",
class: "Felony",
id: 3003,
months: 45,
fine: 3500,
description: "A person who attempts to assume the identity, or state that they are a judge, when they are not, are guilty under this code section.",
},
5: {
title: "Possession of Stolen Government Identification",
class: "Misdemeanor",
id: 3005,
months: 20,
fine: 200,
description: "A person who is in possession of a piece of government identification that does not belong to them, who has not made any attempt to dispose of the item, is guilty under this section.",
},
6: {
title: "Extortion",
class: "Felony",
id: 3006,
months: 30,
fine: 1500,
description: "A person who intimidates or influences another to provide or hand over properties or services is guilty under this code section. A person who utilizes or threatens their power or authority with demonstrated malice aforethought in order to compel action by another is guilty under this code section",
},
7: {
title: "Fraud",
class: "Misdemeanor",
id: 3007,
months: 10,
fine: 150,
description: "A person who knowingly alters, creates, or uses a written document with the intent to defraud or deceive another is guilty under this code section. ",
},
8: {
title: "Forgery",
class: "Misdemeanor",
id: 3008,
months: 15,
fine: 650,
description: "A person who knowingly signs a document or agreement, electronic or otherwise, without the consent or authority of whom they are signing for is guilty under this code section. A person who creates fake government documents is guilty under this code section.",
},
9: {
title: "Money Laundering",
class: "Felony",
id: 3009,
months: 25,
fine: 4000,
description: "A person who possesses, hides, transfers, receives, or maintains the storage of funds earned through comprehensive criminal activities is guilty under this code. A person who maintains an establishment with a purpose to launder funds collected through comprehensive criminal activities is guilty under this code.",
},
},
},
{
id: 3,
title: "Offenses Involving Damage to Property",
statutes: {
1: {
title: "Trespassing",
class: "Misdemeanor",
id: 4001,
months: 5,
fine: 455,
description: "A person who remains on a property after being told to leave by the property owner, an agent of the property owner, or a peace officer, or returns to a property after having been previously trespassed from the property is guilty under this code section.",
},
2: {
title: "Felony Trespassing",
class: "Felony",
id: 4002,
months: 15,
fine: 1500,
description: "A person who, without proper authorization, enters any government-owned or managed facility that is secured with the intent of keeping ordinary citizens outside is guilty under this code section.",
},
3: {
title: "Arson",
class: "Felony",
id: 4003,
months: 15,
fine: 2500,
description: "A person who intentionally and maliciously sets fire to or burns any structure, forest land, or property without prior authorization is guilty under this code section. A person who intentionally aids, counsels, or helps facilitate the burning of any structure, forest land, or property without proper authorization is guilty under this code section.",
},
4: {
title: "Vandalism",
class: "Infraction",
id: 4004,
months: 0,
fine: 100,
description: "A person that defaces, damages, or destroys property which belongs to another is guilty under this code section.",
},
5: {
title: "Vandalism of Government Property",
class: "Misdemeanor",
id: 4005,
months: 10,
fine: 350,
description: "A person that defaces, damages, or destroys property which belongs to a government agency is guilty under this code section.",
},
6: {
title: "Littering",
class: "Infraction",
id: 4006,
months: 0,
fine: 150,
description: 'As used in this section, "litter" means garbage, trash, waste, ashes, cans, bottles, wire, paper, cartons, vessel parts, vehicle parts, furniture, glass, or anything else of an unsightly or unsanitary nature. No person shall place any waste, refuse, litter or foreign substance in any area or receptacle except those provided for that purpose.',
},
},
},
{
id: 4,
title: "Offenses Against Public Administration",
statutes: {
1: {
title: "Bribery of a Government Official",
class: "Felony",
id: 5001,
months: 20,
fine: 200,
description: "A person who offers or gives a monetary gift, gratuity, valuable goods, or other reward to a public official, a government employee, or peace officer in an attempt to influence their duties or actions is guilty under this code section.",
},
2: {
title: "Anti-Mask Law",
class: "Infraction",
id: 5002,
months: 0,
fine: 150,
description: "A person who wears a mask or face covering while committing a crime is guilty under this code section. A person who wears a mask in a government facility, after being asked to remove it, is guilty under this code section.",
},
3: {
title: "Possession of Contraband in a Government Facility",
class: "Felony",
id: 5003,
months: 5,
fine: 200,
description: "A person who possesses a controlled substance, illegal firearm, or any other illegal item while on the premesis of a government facility is guilty under this code section.",
},
4: {
title: "Escaping",
class: "Felony",
id: 5004,
months: 10,
fine: 1005,
description: "Any person arrested, detained, booked, charged, or convicted of any crime who thereafter escapes from a county or city jail, prison, community service, or custody of a Correctional or Parole Officer, Peace Officer, Police Officer, or Federal Agent is guilty under this code section.",
},
5: {
title: "Jailbreak",
class: "Felony",
id: 5005,
months: 30,
fine: 2500,
description: "A person who breaks out a prisoner from a correctional facility without authorization is guilty under this code section.",
},
6: {
title: "Accessory to Jailbreak",
class: "Felony",
id: 5006,
months: 20,
fine: 500,
description: "A person who helps someone to break out a prisoner from a correctional facility without authorization is guilty under this code section.",
},
7: {
title: "Attempted Jailbreak",
class: "Felony",
id: 5007,
months: 20,
fine: 1000,
description: "A person who attempts to break out a prisoner from a correctional facility without authorization is guilty under this code section.",
},
8: {
title: "Perjury",
class: "Felony",
id: 5008,
months: 20,
fine: 4000,
description: "A person who willfully gives false information while testifying in court, during a deposition, or on a signed document presented to a court is guilty under this section.",
},
9: {
title: "Violation of a Restraining Order",
class: "Misdemeanor",
id: 5009,
months: 20,
fine: 525,
description: "A person who knowingly and intentionally violates the parameters of a restraining order against them is guilty under this code section.",
},
10: {
title: "Embezzlement",
class: "Misdemeanor",
id: 5010,
months: 20,
fine: 1000,
description: "A person who steals or misappropriates funds in their trust or belonging to their employer is guilty under this code section.",
},
11: {
title: "Unlawful Practice",
class: "Misdemeanor",
id: 5011,
months: 15,
fine: 1500,
description: "A person who practices medical procedures that they are not licenced or lawfully allowed to practice is guilty under this code section.",
},
12: {
title: "Misuse of Emergency Systems",
class: "Infraction",
id: 5012,
months: 0,
fine: 600,
description: "A person who misuses an emergency system, such as 911 or panic buttons, to waste police time or resources, is guilty under this code section",
},
13: {
title: "Conspiracy",
class: "Misdemeanor",
id: 5013,
months: 0,
fine: 0,
description: "A person who conspires to commit a crime, either alone or with a group, is guilty under this section. A person charged with this can be charged up to half of the fine and sentence of the conspired crime.",
},
14: {
title: "Violating a Court Order",
class: "Misdemeanor",
id: 5014,
months: 10,
fine: 800,
description: "A person who fails to abide by a court order ruled by a judge of San Andreas is guilty under this code section.",
},
15: {
title: "Failure to Appear",
class: "Misdemeanor",
id: 5015,
months: 10,
fine: 650,
description: "A person who fails to appear to a lawfully binding court summons or order for appearance is guilty under this code section.",
},
16: {
title: "Contempt of Court",
class: "Misdemeanor",
id: 5016,
months: 5,
fine: 300,
description: "A person who is disrespectful of the court process, such as being excessively loud or belligerent, refusing to be sworn in as a witness, refusing to comply with a judges request, is guilty under this code section. Repeated offenses can result in multiplication of the maximum fine and sentence.",
},
17: {
title: "Resisting Arrest",
class: "Misdemeanor",
id: 5017,
months: 10,
fine: 750,
description: "A person who avoids apprehension from an officer by non-vehicular means or resists apprehension by any physical means is guilty under this code section is guilty under this code section.",
},
},
},
{
id: 5,
title: "Offenses Against Public Order",
statutes: {
1: {
title: "Disobeying a Peace Officer",
class: "Infraction",
id: 6001,
months: 0,
fine: 175,
description: "A person who fails to comply with a lawful order given from an on duty peace officer or public servant is guilty under this code section.",
},
2: {
title: "Disorderly Conduct",
class: "Infraction",
id: 6002,
months: 0,
fine: 125,
description: "A person who commits such acts that are of a nature to corrupt the public morals, or outrage the sense of public decency, or affect the peace and quiet of persons who may witness them, or engages in brawling or fighting, or engages in such conduct as to constitute a breach of the peace is guilty under this code section.",
},
3: {
title: "Disturbing the Peace",
class: "Infraction",
id: 6003,
months: 0,
fine: 100,
description: "A person who violates a reasonable expectation of peace in a public area is guilty under this code section.",
},
4: {
title: "False Reporting",
class: "Misdemeanor",
id: 6004,
months: 10,
fine: 175,
description: "A person who reports to any peace officer that a felony or misdemeanor has been committed knowing the report to be false is guilty under this code section.",
},
5: {
title: "Harassment",
class: "Misdemeanor",
id: 6005,
months: 10,
fine: 250,
description: "A person who makes communication, whether in person or by means of internet, phone, or other devices (may also apply to circumventing a block on a phone number) with the repeated intent to cause annoyance.",
},
6: {
title: "Misdemeanor Obstruction of Justice",
class: "Misdemeanor",
id: 6006,
months: 10,
fine: 500,
description: "A person who shows a clear and motivated attempt to prevent a peace officer from conducting their duties or completing an investigation is guilty under this code section.",
},
7: {
title: "Felony Obstruction of Justice",
class: "Felony",
id: 6007,
months: 15,
fine: 900,
description: "A person who shows a clear and motivated attempt to prevent an official government proceeding or government officer from completing their assigned duties is guilty under this code section.",
},
8: {
title: "Inciting a Riot",
class: "Felony",
id: 6008,
months: 25,
fine: 500,
description: " A person who with the intent to cause a riot does an act or engages in conduct that urges a riot, or urges others to commit acts of force or violence, or the burning or destroying of property, and at a time and place and under circumstances that produce a clear and present and immediate danger of acts of force or violence or the burning or destroying of property is guilty under this code section.",
},
9: {
title: "Loitering on Government Properties",
class: "Infraction",
id: 6009,
months: 0,
fine: 100,
description: "Criminal loitering refers to anyone who is lingering or hanging around in a public or private area, with the intent to commit criminal activity, or who is assisting and/or aiding another with a crime",
},
10: {
title: "Vehicle Tampering",
class: "Misdemeanor",
id: 6010,
months: 15,
fine: 175,
description: "A person who intentionally tampers or damages a vehicle without the consent of the owner is guilty under this code section.",
},
11: {
title: "Evidence Tampering",
class: "Felony",
id: 6011,
months: 20,
fine: 150,
description: "A person who willfully and intentionally destroys or attempts to destroy, creates or attempts to create false evidence, conceal, or alter any evidence that can later potentially be used in a Criminal investigation or court proceeding is guilty under this code section.",
},
12: {
title: "Witness Tampering",
class: "Felony",
id: 6012,
months: 25,
fine: 1000,
description: "This pertains to a person who knowingly and maliciously prevents or encourages any witness or victim from attending or giving testimony at any trial, proceeding, or inquiry authorized by law with the use of bribery, fear, or other tactics.",
},
13: {
title: "Failure to Provide Identification",
class: "Misdemeanor",
id: 6013,
months: 1,
fine: 350,
description: "A person who fails to identify when lawfully ordered to by a Law Enforcement Officer is guilty under this code section.",
},
14: {
title: "Vigilantism",
class: "Felony",
id: 6014,
months: 30,
fine: 150,
description: "A person who unlawfully attempts to enforce law, or act as law enforcement, is guilty under this code section.",
},
15: {
title: "Unlawful Assembly",
class: "Misdemeanor",
id: 6015,
months: 10,
fine: 750,
description: "Whenever two or more persons, assembled and acting together, make any attempt or advance toward the commission of an act which would be a riot if actually committed. Whenever two or more persons assemble together to do an unlawful act, or do a lawful act in a violent, boisterous, or tumultuous manner is guilty under this code section.",
},
16: {
title: "Government Corruption",
class: "Felony",
id: 6016,
months: 40,
fine: 2000,
description: "The deliberate abuse of authority by any public official, government employee, or elected representative for personal, financial, political, or organizational gain. This includes, but is not limited to: accepting bribes, engaging in quid pro quo arrangements, falsifying official records, misappropriating public resources, interfering with law enforcement investigations, or using official status to shield oneself or others from lawful accountability.",
},
17: {
title: "Stalking",
class: "Felony",
id: 6017,
months: 30,
fine: 350,
description: "A person who intentionally and maliciously follows or harasses another person who has made it known that they do not consent to such following or harassment is guilty under this code section. A person whose actions cause another person to reasonably fear for their safety, or the safety of any person is guilty under this code section.",
},
18: {
title: "Aiding and Abetting",
class: "Misdemeanor",
id: 6018,
months: 15,
fine: 140,
description: "A person who assists in the committing of a crime, or assists in the fleeing of a wanted person is guilty under this code section.",
},
19: {
title: "Harboring a Fugitive",
class: "Misdemeanor",
id: 6019,
months: 20,
fine: 375,
description: "A person who knowingly and intentionally hides, harbours or prevents law enforcement from finding a wanted felon is guilty under this code section.",
},
},
},
{
id: 6,
title: "Offenses Against Health and Morals",
statutes: {
1: {
title: "Illegal Cultivation of Marijuana",
class: "Misdemeanor",
id: 7001,
months: 5,
fine: 2500,
description: "Any individual who is found to be cultivating marijuana in an amount greater than 6 marijuana plants or is cultivating marijuana on public property is in violation of this code. Cultivation of marijuana plants for personal use is restricted to private property, and no greater than 6 plants per property/owner. Plants can be confiscated and/or destroyed by police upon receipt of warrant (for private property) for seizure.",
},
2: {
title: "Illegal Cultivation of Marijuana",
class: "Felony",
id: 7002,
months: 10,
fine: 5000,
description:
"Any individual who is found to be cultivating marijuana in an amount greater than 6 marijuana plants under the following conditions is classified as a felony: If the individual has two or more prior convictions for cultivating more than six marijuana plants, if the individual has a prior conviction for a serious violent felony, and or the cultivation activity involves violation of environmental laws. Cultivation of marijuana plants for personal use is restricted to private property, and no greater than 6 plants per property/owner. Plants can be confiscated and/or destroyed by police upon receipt of a warrant (private property) for seizure.",
},
3: {
title: "Possession of Marijuana",
class: "Misdemeanor",
id: 7003,
months: 15,
fine: 200,
description: "A person who is in possession of illegal marijuana that weighs more than 10 kg, but less than 100 kg is guilty under this code section.",
},
4: {
title: "Possession of Marijuana with Intent to Distribute",
class: "Felony",
id: 7004,
months: 20,
fine: 500,
description: "A person found in possession of over 100 kg of illegal marijuana, with more than 30 kg of marijuana individually packaged for sale (e.g., in joints, baggies, or bricks), and/or also possesses items commonly used in drug distribution (such as scales, empty baggies, etc.), weighing more than 50 kg, is guilty under this code section.",
},
5: {
title: "Misdemeanor Possession of Cocaine",
class: "Misdemeanor",
id: 7005,
months: 0,
fine: 500,
description: "A person who is in possession of cocaine, either in powder or crack formulations, under 10 kg is guilty under this code section.",
},
6: {
title: "Felony Possession of Cocaine",
class: "Felony",
id: 7006,
months: 15,
fine: 750,
description: "A person who is in possession of cocaine, either in powder or crack formulations, greater than 10kg but less than 100kg is guilty under this code section.",
},
7: {
title: "Possession of Cocaine with Intent to Distribute",
class: "Felony",
id: 7007,
months: 20,
fine: 1300,
description: "A person who is in possession of cocaine, either in powder or crack formulations, that exceeds 100 kg in weight, or is packaged individually for sale, and possesses items used in the distribution of drugs (ie. scale, empty baggies, etc.) and weighs more than 50 kg, is guilty under this code section.",
},
8: {
title: "Misdemeanor Possession of Amphetamines",
class: "Misdemeanor",
id: 7008,
months: 0,
fine: 300,
description: "A person who is in possession of amphetamines, including but not limited to methamphetamine and adderall, under 10 kg is guilty under this code section.",
},
9: {
title: "Felony Possession of Amphetamines",
class: "Felony",
id: 7009,
months: 15,
fine: 750,
description: "A person who is in possession of amphetamines, including but not limited to methamphetamine and adderall, greater than 10kg but less than 100kg is guilty under this code section.",
},
10: {
title: "Possession of Amphetamines with Intent to Distribute",
class: "Felony",
id: 7010,
months: 20,
fine: 1500,
description: "A person who is in possession of amphetamines, including but not limited to methamphetamine and adderall, that exceeds 100 kg in weight, or is packaged individually for sale, and possesses items used in the distribution of drugs (ie. scale, empty baggies, etc.) and weighs more than 50 kg, is guilty under this code section.",
},
11: {
title: "Misdemeanor Possession of Opioids",
class: "Misdemeanor",
id: 7011,
months: 0,
fine: 350,
description: "A person who is in possession of opioids, including but not limited to morphine, heroin, hydrocodone, oxycodone, under 10 kg is guilty under this code section.",
},
12: {
title: "Felony Possession of Opioids",
class: "Felony",
id: 7012,
months: 15,
fine: 450,
description: "A person who is in possession of opioids, including but not limited to morphine, heroin, hydrocodone, oxycodone, greater than 10kg but less than 100kg is guilty under this code section",
},
13: {
title: "Possession of Opioids with Intent to Distribute",
class: "Felony",
id: 7013,
months: 20,
fine: 1450,
description: "A person who is in possession of amphetamines, including but not limited to opioids, including but not limited to morphine, heroin, hydrocodone, oxycodone, or is packaged individually for sale, and possesses items used in the distribution of drugs (ie. scale, empty baggies, etc.) and weighs more than 50 kg, is guilty under this code section.",
},
14: {
title: "Possession of Drug Paraphernalia",
class: "Misdemeanor",
id: 7014,
months: 5,
fine: 350,
description: "A person who is in possession of any equipment, product or material of any kind which is primarily intended or designed for use in injecting, ingesting, inhaling, or otherwise introducing into the human body a controlled substance.",
},
15: {
title: "Possession of Drug Manufacturing Materials",
class: "Felony",
id: 7015,
months: 7,
fine: 750,
description: "A person who is in possession of any equipment, product or material of any kind which could be used in manufacturing, compounding, converting, concealing, producing, processing, preparing a controlled substance.",
},
16: {
title: "Sale of a controlled substance",
class: "Misdemeanor",
id: 7016,
months: 10,
fine: 800,
description: "A person who sells, offers to sell, transports with the intent to sell, or gives away a controlled substance to another person, regardless of whether or not they possess that controlled substance is guilty under this code section.",
},
17: {
title: "Drug Trafficking",
class: "Felony",
id: 7017,
months: 60,
fine: 5000,