-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss_db_sample.sql
2911 lines (2904 loc) · 346 KB
/
vss_db_sample.sql
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
-- VSS Sample Data
-- ------------------------------------------------------
USE vss;
--
-- Insert data for table `value_set_category_system`
--
INSERT INTO `value_set_category_system` VALUES (1, 'http://hl7.org/fhir/v3/ActCode');
--
-- Insert data for table `code_system`
--
INSERT INTO `code_system` VALUES
(1, 'SNOMED CT ', 'SNOMED-Clinical Terms', '2.16.840.1.113883.6.96',
'Systematized Nomenclature of Medicine-Clinical Terms'),
(2, 'ICD-10-CM ', 'ICD-10-Clinical Modification', '2.16.840.1.113883.6.90',
'The International Classification of Diseases, 10th Revision, Clinical Modification'),
(3, 'ICD-9-CM ', 'ICD-9-Clinical Modification', '2.16.840.1.113883.6.103',
'The International Classification of Diseases, 9th Revision, Clinical Modification'),
(4, 'LOINC ', 'LOINC', '2.16.840.1.113883.6.1', 'Logical Observation Identifier Names and Codes'),
(5, 'PH_RxNorm', 'RxNorm', '2.16.840.1.113883.6.88',
'Catalog of the standard names given to clinical drugs and drug delivery devices'),
(6, 'HCPCS', 'HCPCS', '2.16.840.1.113883.6.14', 'Healthcare Common Procedure Coding System'),
(7, 'CPT-4', 'CPT-4', '2.16.840.1.113883.6.12',
'American Medical Association\'s Current Procedure Terminology 4 (CPT-4) codes');
--
-- Insert data for table `code_system_version`
--
INSERT INTO `code_system_version` VALUES
(18, '2014', '2014', 1, 3),
(19, '2014', '2014', 1, 2),
(21, '2014', '2014', 1, 1),
(22, '2014', '2014', 1, 5),
(23, '2014', '2014', 1, 4),
(24, '2014', '2014', 1, 6),
(25, '2014', '2014', 1, 7);
--
-- Insert data for table `value_set_category`
--
INSERT INTO `value_set_category` VALUES
(1, 'ETH', 'Drug use information',
'Drug abuse or substance abuse is the use of mood-altering substances that interfere with or have a negative effect on a person’s life. These include negative effects on a person’s physical, psychological, social, emotional, occupational, and educational well-being. Drug abuse is characterized by dysfunction and negative consequences. Most drugs of abuse are mood altering (they change a person’s mood or feeling), and fall in three categories: stimulants, depressants, and hallucinogens.',
1, TRUE, 1),
(3, 'HIV', 'HIV/AIDS information',
'Human immunodeficiency virus (HIV) is a virus that weakens a person’s immune system by destroying important cells that fight disease and infection. HIV infection typically begins with flu-like symptoms followed by a long symptom-free period. HIV can be controlled with antiretroviral therapy. Untreated, HIV can advance to acquire immunodeficiency syndrome (AIDS), the most severe phase of HIV infection. People with AIDS have such badly damaged immune systems that they get an increasing number of severe illnesses, which can lead to death.',
4, FALSE, 1),
(4, 'PSY', 'Mental health information',
'Mental illness or a psychiatric disorder is a condition that affects a person’s thinking, feeling, or mood, and may affect his or her ability to relate to others and function well on a daily basis. Mental illnesses are medical conditions that often cause a diminished ability to cope with the ordinary demands of life. Like other medical disorders, mental illness ranges from mild to severe. There is a wide variety of treatments for mental illnesses.',
3, FALSE, 1),
(6, 'SEX', 'Sexuality and reproductive health information',
'Good sexual and reproductive health is a state of complete physical, mental, and social well-being in all matters relating to the reproductive system, at all stages of life. It implies that people are able to have a satisfying and safe sex life, the capacity to reproduce, and the freedom to decide if, when, and how often to do so. Similarly, sexual health is a state of physical, emotional, and social well-being in relation to sexuality. It is not simply the absence of disease, dysfunction, or infirmity.',
7, FALSE, 1),
(9, 'ALC', 'Alcohol use and Alcoholism Information',
'Alcohol abuse is the use of alcohol in such a way that it interferes with or has a negative effect on a person’s life. These include negative effects on a person’s physical, psychological, social, emotional, occupational, and educational well-being. Alcoholism or alcohol addiction is a primary, chronic, and disabling disorder that involves compulsion, loss of control, and continued use despite negative consequences. Genetic, psychosocial, and environmental factors influence its development and outcome.',
2, TRUE, 1),
(10, 'COM', 'Communicable disease information',
'Communicable diseases, also known as infectious diseases are illnesses that result from the infection, presence, and growth of organisms and microorganisms such as bacteria, viruses, fungi, and parasites. They can be spread, directly or indirectly, from one person to another.',
6, FALSE, 1);
--
-- Insert data for table `value_set`
--
INSERT INTO `value_set` VALUES
(21, 'Amphetamine-Abuse-ICD-9', 'Amphetamine-Abuse-ICD-9', 'Amphetamine-Abuse-ICD-9', 1),
(22, 'Alcohol-Abuse-ICD-9-SNOWMED', 'Alcohol-Abuse-ICD-9-SNOWMED', 'Alcohol-Abuse-ICD-9-SNOWMED', 9),
(23, 'Alcohol-Ethanol-Toxicology-LOINC', 'Alcohol-Ethanol-Toxicology-LOINC', 'Alcohol-Ethanol-Toxicology-LOINC', 9),
(24, 'Amphetamine-Toxicology-LOINC', 'Amphetamine-Toxicology-LOINC', 'Amphetamine-Toxicology-LOINC', 1),
(25, 'Cannabinoids-Toxicology-LOINC', 'Cannabinoids-Toxicology-LOINC', 'Cannabinoids-Toxicology-LOINC', 1),
(27, 'Cannabis-Abuse-ICD-9', 'Cannabis-Abuse-ICD-9', 'Cannabis-Abuse-ICD-9', 1),
(28, 'Cocaine-Abuse-ICD-9-SNOWMED', 'Cocaine-Abuse-ICD-9-SNOWMED', 'Cocaine-Abuse-ICD-9-SNOWMED', 1),
(29, 'Drug-Induced-Mental-Disorders-ICD-9', 'Drug-Induced-Mental-Disorders-ICD-9', 'Drug-Induced-Mental-Disorders-ICD-9', 1),
(30, 'HIV-Related-Medications-RxNorm', 'HIV-Related-Medications-RxNorm', 'HIV-Related-Medications-RxNorm', 3),
(31, 'Substance-Abuse-Treatment-RxNorm', 'Substance-Abuse-Treatment-RxNorm', 'Substance-Abuse-Treatment-RxNorm', 1),
(32, 'Hallucinogen-Abuse-ICD-9', 'Hallucinogen-Abuse-ICD-9', 'Hallucinogen-Abuse-ICD-9', 1),
(33, 'Hallucinogen-Toxicology-LOINC', 'Hallucinogen-Toxicology-LOINC', 'Hallucinogen-Toxicology-LOINC', 1),
(34, 'HIV-Related-Disorders-ICD-9-SNOWMED', 'HIV-Related-Disorders-ICD-9-SNOWMED', 'HIV-Related-Disorders-ICD-9-SNOWMED', 3),
(35, 'HIV-Related-Procedures-CPT-4', 'HIV-Related-Procedures-CPT-4', 'HIV-Related-Procedures-CPT-4', 3),
(36, 'HIV-Related-Procedures-HCPCS', 'HIV-Related-Procedures-HCPCS', 'HIV-Related-Procedures-HCPCS', 3),
(37, 'HIV-Related-Tests-LOINC', 'HIV-Related-Tests-LOINC', 'HIV-Related-Tests-LOINC', 3),
(38, 'Inhalant-Other-Mixed-Drug-Abuse-ICD-9', 'Inhalant-Other-Mixed-Drug-Abuse-ICD-9', 'Inhalant-Other-Mixed-Drug-Abuse-ICD-9', 1),
(39, 'Narcotics-Opioids-Toxicology-LOINC', 'Narcotics-Opioids-Toxicology-LOINC', 'Narcotics-Opioids-Toxicology-LOINC', 1),
(40, 'Opioid-Abuse-ICD-9', 'Opioid-Abuse-ICD-9', 'Opioid-Abuse-ICD-9', 1),
(41, 'Psychiatric-Disorders-ICD-9-SNOWMED', 'Psychiatric-Disorders-ICD-9-SNOWMED', 'Psychiatric-Disorders-ICD-9-SNOWMED', 4),
(42, 'Sedative-hypnotic-anxiolytic-Abuse-ICD-9', 'Sedative-hypnotic-anxiolytic-Abuse-ICD-9', 'Sedative-hypnotic-anxiolytic-Abuse-ICD-9', 1),
(43, 'Substance-Abuse-Procedure-CPT-4', 'Substance-Abuse-Procedure-CPT-4', 'Substance-Abuse-Procedure-CPT-4', 1),
(44, 'Substance-Abuse-Procedure-HCPCS', 'Substance-Abuse-Procedure-HCPCS', 'Substance-Abuse-Procedure-HCPCS', 1),
(45, 'Substance-Abuse-Procedure-ICD-9', 'Substance-Abuse-Procedure-ICD-9', 'Substance-Abuse-Procedure-ICD-9', 1),
(47, 'Psychiatric-Disorders-ICD-9-non-DSM', 'Psychiatric-Disorders-ICD-9-non-DSM', 'Psychiatric-Disorders-ICD-9-non-DSM - codes not included in DSM but present in ICD-9-CM', 1),
(48, 'Sedative-hypnotic-anxiolytic-Abuse-ICD-10', 'Sedative-hypnotic-anxiolytic-Abuse-ICD-10', 'Sedative-hypnotic-anxiolytic-Abuse-ICD-10', 1),
(49, 'Opioid-Abuse-ICD-10', 'Opioid-Abuse-ICD-10', 'Opioid-Abuse-ICD-10', 1),
(50, 'Inhalant-Drug-Abuse-ICD-10', 'Inhalant-Drug-Abuse-ICD-10', 'Inhalant-Drug-Abuse-ICD-10', 1),
(51, 'Hallucinogen-Abuse-ICD-10', 'Hallucinogen-Abuse-ICD-10', 'Hallucinogen-Abuse-ICD-10', 1),
(52, 'Cocaine-Abuse-ICD-10', 'Cocaine-Abuse-ICD-10', 'Cocaine-Abuse-ICD-10', 1),
(53, 'Cannabis-Abuse-ICD-10', 'Cannabis-Abuse-ICD-10', 'Cannabis-Abuse-ICD-10', 1),
(54, 'Antidepressant-Other-Mixed-Drug-Abuse-ICD-10', 'Antidepressant-Other-Mixed-Drug-Abuse-ICD-10',
'Antidepressant-Other-Mixed-Drug-Abuse-ICD-10', 1),
(55, 'Amphetamine-Stimulant-Abuse-ICD-10', 'Amphetamine-Stimulant-Abuse-ICD-10', 'Amphetamine-Stimulant-Abuse-ICD-10',
1), (56, 'Alcohol-Abuse-ICD-10', 'Alcohol-Abuse-ICD-10', 'Alcohol-Abuse-ICD-10', 9),
(57, 'Psychiatric-Disorders-ICD-10', 'Psychiatric-Disorders-ICD-10', 'Psychiatric-Disorders-ICD-10', 4),
(58, 'Psychiatry-Treatment-RxNorm', 'Psychiatry-Treatment-RxNorm', 'Psychiatry-Treatment-RxNorm', 4),
(59, 'Alcohol-Abuse-Treatment-RxNorm', 'Alcohol-Abuse-Treatment-RxNorm', 'Alcohol-Abuse-Treatment-RxNorm', 9),
(60, 'Sexual-ICD-9-SNOWMED', 'Sexual-ICD-9-SNOWMED', 'Sexual-ICD-9-SNOWMED', 6),
(61, 'Communicable-Diseases-Treatment-RxNorm', 'Communicable-Diseases-Treatment-RxNorm',
'Communicable-Diseases-Treatment-RxNorm', 10),
(62, 'Sexuality-Reproductive-Treatment-RxNorm', 'Sexuality-Reproductive-Treatment-RxNorm',
'Sexuality & Reproductive Treatment RxNorm', 6);
--
-- Insert data for table `coded_concept`
--
INSERT INTO `coded_concept` VALUES
(65, 'LP14348-4', 'Ethanol', 'Ethanol', 23),
(66, 'LP16119-7', 'Disulfiram', 'Disulfiram', 23),
(67, 'LP51222-5', 'Disulfiram | Bld-Ser-Plas', 'Disulfiram | Bld-Ser-Plas', 23),
(68, '3577-4', 'Disulfiram [Mass/volume] in Serum or Plasma', 'Disulfiram [Mass/volume] in Serum or Plasma', 23),
(69, 'LP44964-2', 'Disulfiram | Urine', 'Disulfiram | Urine', 23),
(70, '9357-5', 'Disulfiram [Mass/volume] in Urine', 'Disulfiram [Mass/volume] in Urine', 23),
(71, '16781-7', 'Disulfiram [Presence] in Urine', 'Disulfiram [Presence] in Urine', 23),
(72, 'LP53374-2', 'Ethyl glucuronide | Urine', 'Ethyl glucuronide | Urine', 23),
(73, '45324-1', 'Ethyl glucuronide [Mass/volume] in Urine', 'Ethyl glucuronide [Mass/volume] in Urine', 23),
(74, '58378-1', 'Ethyl glucuronide [Mass/volume] in Urine by Confirmatory method', 'Ethyl glucuronide [Mass/volume] in Urine by Confirmatory method', 23),
(75, '55349-5', 'Ethyl glucuronide [Presence] in Urine', 'Ethyl glucuronide [Presence] in Urine', 23),
(76, '58377-3', 'Ethyl glucuronide [Presence] in Urine by Confirmatory method', 'Ethyl glucuronide [Presence] in Urine by Confirmatory method', 23),
(77, '58375-7', 'Ethyl glucuronide [Presence] in Urine by Screen method', 'Ethyl glucuronide [Presence] in Urine by Screen method', 23),
(78, '58376-5', 'Ethyl glucuronide/Creatinine [Mass Ratio] in Urine', 'Ethyl glucuronide/Creatinine [Mass Ratio] in Urine', 23),
(79, 'LP43273-9', 'Ethanol | Bld-Ser-Plas', 'Ethanol | Bld-Ser-Plas', 23),
(80, '5640-8', 'Ethanol [Mass/volume] in Blood', 'Ethanol [Mass/volume] in Blood', 23),
(81, '56478-1', 'Ethanol [Mass/volume] in Blood by Gas chromatography', 'Ethanol [Mass/volume] in Blood by Gas chromatography', 23),
(82, '15120-9', 'Ethanol [Moles/volume] in Blood', 'Ethanol [Moles/volume] in Blood', 23),
(83, '5639-0', 'Ethanol [Presence] in Blood', 'Ethanol [Presence] in Blood', 23),
(84, '5643-2', 'Ethanol [Mass/volume] in Serum or Plasma', 'Ethanol [Mass/volume] in Serum or Plasma', 23),
(85, '14336-2', 'Ethanol [Mass/volume] in Serum or Plasma by Gas chromatography', 'Ethanol [Mass/volume] in Serum or Plasma by Gas chromatography', 23),
(86, '14719-9', 'Ethanol [Moles/volume] in Serum or Plasma', 'Ethanol [Moles/volume] in Serum or Plasma', 23),
(87, '5642-4', 'Ethanol [Presence] in Serum or Plasma', 'Ethanol [Presence] in Serum or Plasma', 23),
(88, '20470-1', 'Ethanol [Presence] in Serum or Plasma by Screen method', 'Ethanol [Presence] in Serum or Plasma by Screen method', 23),
(89, 'LP45002-0', 'Ethanol | Body Fluid', 'Ethanol | Body Fluid', 23),
(90, '16843-5', 'Ethanol [Mass/volume] in Body fluid', 'Ethanol [Mass/volume] in Body fluid', 23),
(91, 'LP54131-5', 'Ethanol | Exhaled gas', 'Ethanol | Exhaled gas', 23),
(92, '5641-6', 'Ethanol [Mass/volume] in Exhaled gas', 'Ethanol [Mass/volume] in Exhaled gas', 23),
(93, 'LP40656-8', 'Ethanol | Gastric fluid', 'Ethanol | Gastric fluid', 23),
(94, '10367-1', 'Ethanol [Mass/volume] in Gastric fluid', 'Ethanol [Mass/volume] in Gastric fluid', 23),
(95, '47107-8', 'Ethanol [Moles/volume] in Gastric fluid', 'Ethanol [Moles/volume] in Gastric fluid', 23),
(96, '40530-8', 'Ethanol [Presence] in Gastric fluid', 'Ethanol [Presence] in Gastric fluid', 23),
(97, '61095-6', 'Ethanol [Presence] in Gastric fluid by Screen method', 'Ethanol [Presence] in Gastric fluid by Screen method', 23),
(98, 'LP44049-2', 'Ethanol | Meconium', 'Ethanol | Meconium', 23),
(99, '15402-1', 'Ethanol [Presence] in Meconium', 'Ethanol [Presence] in Meconium', 23),
(100, 'LP50880-1', 'Ethanol | Saliva', 'Ethanol | Saliva', 23),
(101, '34882-1', 'Ethanol [Mass/volume] in Saliva (oral fluid)', 'Ethanol [Mass/volume] in Saliva (oral fluid)', 23),
(102, '50343-3', 'Ethanol [Presence] in Saliva (oral fluid) by Screen method', 'Ethanol [Presence] in Saliva (oral fluid) by Screen method', 23),
(103, 'LP131065-7', 'Ethanol | Tissue and Smears', 'Ethanol | Tissue and Smears', 23),
(104, '23861-8', 'Ethanol [Mass/mass] in Tissue', 'Ethanol [Mass/mass] in Tissue', 23),
(105, 'LP45001-2', 'Ethanol | Unknown substance', 'Ethanol | Unknown substance', 23),
(106, '16842-7', 'Ethanol [Mass/volume] in Unknown substance', 'Ethanol [Mass/volume] in Unknown substance', 23),
(107, 'LP47217-2', 'Ethanol | Urine', 'Ethanol | Urine', 23),
(108, '5645-7', 'Ethanol [Mass/volume] in Urine', 'Ethanol [Mass/volume] in Urine', 23),
(109, '46983-3', 'Ethanol [Mass/volume] in Urine by Confirmatory method', 'Ethanol [Mass/volume] in Urine by Confirmatory method', 23),
(110, '22745-4', 'Ethanol [Moles/volume] in Urine', 'Ethanol [Moles/volume] in Urine', 23),
(111, '5644-0', 'Ethanol [Presence] in Urine', 'Ethanol [Presence] in Urine', 23),
(112, '34180-0', 'Ethanol [Presence] in Urine by Confirmatory method', 'Ethanol [Presence] in Urine by Confirmatory method', 23),
(113, '42242-8', 'Ethanol [Presence] in Urine by Screen method', 'Ethanol [Presence] in Urine by Screen method', 23),
(114, '35664-2', 'Ethanol [Mass/volume] in unspecified time Urine', 'Ethanol [Mass/volume] in unspecified time Urine', 23),
(115, '58356-7', 'Ethanol/Creatinine [Mass Ratio] in Urine', 'Ethanol/Creatinine [Mass Ratio] in Urine', 23),
(116, 'LP42011-4', 'Ethanol | Vitreous fluid', 'Ethanol | Vitreous fluid', 23),
(117, '12465-1', 'Ethanol [Mass/volume] in Vitreous fluid', 'Ethanol [Mass/volume] in Vitreous fluid', 23),
(118, 'LP49842-5', 'Ethanol | XXX', 'Ethanol | XXX', 23),
(119, '32070-5', 'Ethanol [Moles/volume] in Unspecified specimen', 'Ethanol [Moles/volume] in Unspecified specimen', 23),
(120, '61066-7', 'Ethanol [Presence] in Unspecified specimen by Screen method', 'Ethanol [Presence] in Unspecified specimen by Screen method', 23),
(121, 'LP172697-7', 'Ethanol+Methanol+Isopropyl alchohol+Acetone | Bld-Ser-Plas', 'Ethanol+Methanol+Isopropyl alchohol+Acetone | Bld-Ser-Plas', 23),
(122, '48342-0', 'Ethanol+Methanol+Isopropyl alchohol+Acetone [Moles/volume] in Serum or Plasma', 'Ethanol+Methanol+Isopropyl alchohol+Acetone [Moles/volume] in Serum or Plasma', 23),
(123, '50022-3', 'Ethanol+Methanol+Isopropyl alchohol+Acetone [Presence] in Serum, Plasma or Blood', 'Ethanol+Methanol+Isopropyl alchohol+Acetone [Presence] in Serum, Plasma or Blood', 23),
(124, 'LP18868-7', 'Amphetamine', 'Amphetamine', 23), (125, 'LP16034-8', 'Amphetamines', 'Amphetamines', 23),
(126, 'LP50411-5', 'Amphetamines | Bld-Ser-Plas', 'Amphetamines | Bld-Ser-Plas', 23),
(127, '51690-6', 'Amphetamines [Presence] in Blood by Screen method', 'Amphetamines [Presence] in Blood by Screen method', 23),
(128, '8147-1', 'Amphetamines [Mass/volume] in Serum or Plasma', 'Amphetamines [Mass/volume] in Serum or Plasma', 23),
(129, '3348-0', 'Amphetamines [Presence] in Serum or Plasma', 'Amphetamines [Presence] in Serum or Plasma', 23),
(130, '8148-9', 'Amphetamines [Presence] in Serum or Plasma by Confirmatory method', 'Amphetamines [Presence] in Serum or Plasma by Confirmatory method', 23),
(131, '8149-7', 'Amphetamines [Presence] in Serum or Plasma by Screen method', 'Amphetamines [Presence] in Serum or Plasma by Screen method', 23),
(132, 'LP54797-3', 'Amphetamines | Gastric fluid', 'Amphetamines | Gastric fluid', 23),
(133, '8139-8', 'Amphetamines [Mass/volume] in Gastric fluid', 'Amphetamines [Mass/volume] in Gastric fluid', 23),
(134, '8140-6', 'Amphetamines [Presence] in Gastric fluid', 'Amphetamines [Presence] in Gastric fluid', 23),
(135, '8141-4', 'Amphetamines [Presence] in Gastric fluid by Confirmatory method', 'Amphetamines [Presence] in Gastric fluid by Confirmatory method', 23),
(136, '8142-2', 'Amphetamines [Presence] in Gastric fluid by Screen method', 'Amphetamines [Presence] in Gastric fluid by Screen method', 23),
(137, 'LP51948-5', 'Amphetamines | Hair', 'Amphetamines | Hair', 23),
(138, '9352-6', 'Amphetamines [Mass/mass] in Hair', 'Amphetamines [Mass/mass] in Hair', 23),
(139, '40529-0', 'Amphetamines [Presence] in Hair', 'Amphetamines [Presence] in Hair', 23),
(140, '40798-1', 'Amphetamines [Presence] in Hair by Screen method', 'Amphetamines [Presence] in Hair by Screen method', 23),
(141, 'LP48532-3', 'Amphetamines | Meconium', 'Amphetamines | Meconium', 23),
(142, '8143-0', 'Amphetamines [Mass/volume] in Meconium', 'Amphetamines [Mass/volume] in Meconium', 23),
(143, '26895-3', 'Amphetamines [Mass/mass] in Meconium', 'Amphetamines [Mass/mass] in Meconium', 23),
(144, '43934-9', 'Amphetamines [Mass/mass] in Meconium by Confirmatory method', 'Amphetamines [Mass/mass] in Meconium by Confirmatory method', 23),
(145, '8144-8', 'Amphetamines [Presence] in Meconium', 'Amphetamines [Presence] in Meconium', 23),
(146, '8145-5', 'Amphetamines [Presence] in Meconium by Confirmatory method', 'Amphetamines [Presence] in Meconium by Confirmatory method', 23),
(147, '8146-3', 'Amphetamines [Presence] in Meconium by Screen method', 'Amphetamines [Presence] in Meconium by Screen method', 23),
(148, 'LP48645-3', 'Amphetamines | Milk', 'Amphetamines | Milk', 23),
(149, '27105-6', 'Amphetamines [Mass/volume] in Milk', 'Amphetamines [Mass/volume] in Milk', 23),
(150, 'LP52053-3', 'Amphetamines | Saliva', 'Amphetamines | Saliva', 23),
(151, '40799-9', 'Amphetamines [Presence] in Saliva (oral fluid) by Screen method', 'Amphetamines [Presence] in Saliva (oral fluid) by Screen method', 23),
(152, 'LP41899-3', 'Amphetamines | Stool', 'Amphetamines | Stool', 23),
(153, '12350-5', 'Amphetamines [Presence] in Stool', 'Amphetamines [Presence] in Stool', 23),
(154, '18431-7', 'Amphetamines [Presence] in Stool by Screen method', 'Amphetamines [Presence] in Stool by Screen method', 23),
(155, 'LP54800-5', 'Amphetamines | Unknown substance', 'Amphetamines | Unknown substance', 23),
(156, '8153-9', 'Amphetamines [Mass/volume] in Unknown substance', 'Amphetamines [Mass/volume] in Unknown substance', 23),
(157, '8154-7', 'Amphetamines [Presence] in Unknown substance', 'Amphetamines [Presence] in Unknown substance', 23),
(158, '8155-4', 'Amphetamines [Presence] in Unknown substance by Confirmatory method', 'Amphetamines [Presence] in Unknown substance by Confirmatory method', 23),
(159, '8156-2', 'Amphetamines [Presence] in Unknown substance by Screen method', 'Amphetamines [Presence] in Unknown substance by Screen method', 23),
(160, 'LP43255-6', 'Amphetamines | Urine', 'Amphetamines | Urine', 23),
(161, '8150-5', 'Amphetamines [Mass/volume] in Urine', 'Amphetamines [Mass/volume] in Urine', 23),
(162, '20410-7', 'Amphetamines [Mass/volume] in Urine by Confirmatory method', 'Amphetamines [Mass/volume] in Urine by Confirmatory method', 23),
(163, '70138-3', 'Amphetamines [Mass/volume] in Urine by Screen method', 'Amphetamines [Mass/volume] in Urine by Screen method', 23),
(164, '3349-8', 'Amphetamines [Presence] in Urine', 'Amphetamines [Presence] in Urine', 23),
(165, '16369-1', 'Amphetamines [Presence] in Urine by Confirmatory method', 'Amphetamines [Presence] in Urine by Confirmatory method', 23),
(166, '14309-9', 'Amphetamines [Presence] in Urine by Confirm method >200 ng/mL', 'Amphetamines [Presence] in Urine by Confirm method >200 ng/mL', 23),
(167, '8151-3', 'Amphetamines [Presence] in Urine by SAMHSA confirm method', 'Amphetamines [Presence] in Urine by SAMHSA confirm method', 23),
(168, '8152-1', 'Amphetamines [Presence] in Urine by SAMHSA screen method', 'Amphetamines [Presence] in Urine by SAMHSA screen method', 23),
(169, '19261-7', 'Amphetamines [Presence] in Urine by Screen method', 'Amphetamines [Presence] in Urine by Screen method', 23),
(170, '14308-1', 'Amphetamines [Presence] in Urine by Screen method >1000 ng/mL', 'Amphetamines [Presence] in Urine by Screen method >1000 ng/mL', 23),
(171, '43983-6', 'Amphetamines [Presence] in Urine by Screen method >500 ng/mL', 'Amphetamines [Presence] in Urine by Screen method >500 ng/mL', 23),
(172, '19269-0', 'Amphetamines confirm method [Identifier] in Urine', 'Amphetamines confirm method [Identifier] in Urine', 23),
(173, '19059-5', 'Amphetamines cutoff [Mass/volume] in Urine', 'Amphetamines cutoff [Mass/volume] in Urine', 23),
(174, '19267-4', 'Amphetamines cutoff [Mass/volume] in Urine for Confirmatory method', 'Amphetamines cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(175, '19266-6', 'Amphetamines cutoff [Mass/volume] in Urine for Screen method', 'Amphetamines cutoff [Mass/volume] in Urine for Screen method', 23),
(176, '19268-2', 'Amphetamines screen method [Identifier] in Urine', 'Amphetamines screen method [Identifier] in Urine', 23),
(177, '19263-3', 'Amphetamines tested for in Urine by Screen method Narrative', 'Amphetamines tested for in Urine by Screen method Narrative', 23),
(178, '19262-5', 'Amphetamines tested for in Urine by Screen method Nominal', 'Amphetamines tested for in Urine by Screen method Nominal', 23),
(179, '41464-9', 'Amphetamines/Creatinine [Mass Ratio] in Urine', 'Amphetamines/Creatinine [Mass Ratio] in Urine', 23),
(180, 'LP48689-1', 'Amphetamines | Vitreous fluid', 'Amphetamines | Vitreous fluid', 23),
(181, '27263-3', 'Amphetamines [Mass/volume] in Vitreous fluid', 'Amphetamines [Mass/volume] in Vitreous fluid', 23),
(182, '27205-4', 'Amphetamines [Presence] in Vitreous fluid', 'Amphetamines [Presence] in Vitreous fluid', 23),
(183, 'LP49114-9', 'Amphetamines | XXX', 'Amphetamines | XXX', 23),
(184, '48939-3', 'Amphetamines [Mass/volume] in Unspecified specimen', 'Amphetamines [Mass/volume] in Unspecified specimen', 23),
(185, '29530-3', 'Amphetamines [Presence] in Unspecified specimen', 'Amphetamines [Presence] in Unspecified specimen', 23),
(186, 'LP16035-5', 'Amphetaminil', 'Amphetaminil', 23),
(187, 'LP50415-6', 'Amphetaminil | Urine', 'Amphetaminil | Urine', 23),
(188, '3352-2', 'Amphetaminil [Mass/time] in 24 hour Urine', 'Amphetaminil [Mass/time] in 24 hour Urine', 23),
(189, '3351-4', 'Amphetaminil [Mass/volume] in Urine', 'Amphetaminil [Mass/volume] in Urine', 23),
(190, '3350-6', 'Amphetaminil [Presence] in Urine', 'Amphetaminil [Presence] in Urine', 23),
(191, 'LP31526-4', 'Amphetamine+Methamphetamine', 'Amphetamine+Methamphetamine', 23),
(192, 'LP69733-1', 'Amphetamine+Methamphetamine | Bld-Ser-Plas', 'Amphetamine+Methamphetamine | Bld-Ser-Plas', 23),
(193, '40421-0', 'Amphetamine+Methamphetamine [Presence] in Serum or Plasma', 'Amphetamine+Methamphetamine [Presence] in Serum or Plasma', 23),
(194, 'LP69763-8', 'Amphetamine+Methamphetamine | Gastric fluid', 'Amphetamine+Methamphetamine | Gastric fluid', 23),
(195, '43860-6', 'Amphetamine+Methamphetamine [Presence] in Gastric fluid by Screen method', 'Amphetamine+Methamphetamine [Presence] in Gastric fluid by Screen method', 23),
(196, 'LP69685-3', 'Amphetamine+Methamphetamine | Urine', 'Amphetamine+Methamphetamine | Urine', 23),
(197, '56120-9', 'Amphetamine+Methamphetamine [Mass/volume] in Urine', 'Amphetamine+Methamphetamine [Mass/volume] in Urine', 23),
(198, '33280-9', 'Amphetamine+Methamphetamine [Mass/volume] in Urine by Screen method', 'Amphetamine+Methamphetamine [Mass/volume] in Urine by Screen method', 23),
(199, '40419-4', 'Amphetamine+Methamphetamine [Presence] in Urine', 'Amphetamine+Methamphetamine [Presence] in Urine', 23),
(200, 'LP69732-3', 'Amphetamine+Methamphetamine | XXX', 'Amphetamine+Methamphetamine | XXX', 23),
(201, '40420-2', 'Amphetamine+Methamphetamine [Presence] in Unspecified specimen', 'Amphetamine+Methamphetamine [Presence] in Unspecified specimen', 23),
(202, 'LP99793-9', 'Benzylpiperazine', 'Benzylpiperazine', 23),
(203, 'LP100108-2', 'Benzylpiperazine | Bld-Ser-Plas', 'Benzylpiperazine | Bld-Ser-Plas', 23),
(204, '59285-7', 'Benzylpiperazine [Mass/volume] in Blood', 'Benzylpiperazine [Mass/volume] in Blood', 23),
(205, '59286-5', 'Benzylpiperazine [Mass/volume] in Serum or Plasma', 'Benzylpiperazine [Mass/volume] in Serum or Plasma', 23),
(206, 'LP99852-3', 'Benzylpiperazine | Urine', 'Benzylpiperazine | Urine', 23),
(207, '59287-3', 'Benzylpiperazine [Mass/volume] in Urine', 'Benzylpiperazine [Mass/volume] in Urine', 23),
(208, '59135-4', 'Benzylpiperazine [Mass/volume] in Urine by Confirmatory method', 'Benzylpiperazine [Mass/volume] in Urine by Confirmatory method', 23),
(209, '64233-0', 'Benzylpiperazine [Presence] in Urine by Confirmatory method', 'Benzylpiperazine [Presence] in Urine by Confirmatory method', 23),
(210, 'LP71389-8', 'Chloroamphetamine | Bld-Ser-Plas', 'Chloroamphetamine | Bld-Ser-Plas', 23),
(211, '53821-5', 'Chloroamphetamine [Mass/volume] in Serum', 'Chloroamphetamine [Mass/volume] in Serum', 23),
(212, 'LP16081-9', 'Clobenzorex', 'Clobenzorex', 23),
(213, 'LP50882-7', 'Clobenzorex | Urine', 'Clobenzorex | Urine', 23),
(214, '3489-2', 'Clobenzorex [Mass/volume] in Urine', 'Clobenzorex [Mass/volume] in Urine', 23),
(215, '3488-4', 'Clobenzorex [Presence] in Urine', 'Clobenzorex [Presence] in Urine', 23),
(216, 'LP18019-7', 'Dextroamphetamine', 'Dextroamphetamine', 23),
(217, 'LP50128-5', 'Dextroamphetamine | Bld-Ser-Plas', 'Dextroamphetamine | Bld-Ser-Plas', 23),
(218, '9814-5', 'Dextroamphetamine [Mass/volume] in Serum or Plasma', 'Dextroamphetamine [Mass/volume] in Serum or Plasma', 23),
(219, '32642-1', 'Dextroamphetamine/Levoamphetamine [Mass Ratio] in Serum or Plasma', 'Dextroamphetamine/Levoamphetamine [Mass Ratio] in Serum or Plasma', 23),
(220, 'LP42699-6', 'Dextroamphetamine | Urine', 'Dextroamphetamine | Urine', 23),
(221, '15366-8', 'Dextroamphetamine [Mass/volume] in Urine', 'Dextroamphetamine [Mass/volume] in Urine', 23),
(222, '20525-2', 'Dextroamphetamine [Mass/volume] in Urine by Confirmatory method', 'Dextroamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(223, '19420-9', 'Dextroamphetamine [Presence] in Urine by Confirmatory method', 'Dextroamphetamine [Presence] in Urine by Confirmatory method', 23),
(224, '19419-1', 'Dextroamphetamine [Presence] in Urine by Screen method', 'Dextroamphetamine [Presence] in Urine by Screen method', 23),
(225, '19422-5', 'Dextroamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Dextroamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(226, '19421-7', 'Dextroamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Dextroamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(227, '31025-0', 'Dextroamphetamine/Amphetamines.total in Urine', 'Dextroamphetamine/Amphetamines.total in Urine', 23),
(228, '13497-3', 'Dextroamphetamine/Levoamphetamine [Mass Ratio] in Urine', 'Dextroamphetamine/Levoamphetamine [Mass Ratio] in Urine', 23),
(229, 'LP19426-3', 'Dextromethamphetamine', 'Dextromethamphetamine', 23),
(230, 'LP50129-3', 'Dextromethamphetamine | Bld-Ser-Plas', 'Dextromethamphetamine | Bld-Ser-Plas', 23),
(231, '32643-9', 'Dextromethamphetamine/Levomethamphetamine [Mass Ratio] in Serum or Plasma', 'Dextromethamphetamine/Levomethamphetamine [Mass Ratio] in Serum or Plasma', 23),
(232, 'LP42022-1', 'Dextromethamphetamine | Urine', 'Dextromethamphetamine | Urine', 23),
(233, '12477-6', 'Dextromethamphetamine [Mass/volume] in Urine', 'Dextromethamphetamine [Mass/volume] in Urine', 23),
(234, '19425-8', 'Dextromethamphetamine [Mass/volume] in Urine by Confirmatory method', 'Dextromethamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(235, '58925-9', 'Dextromethamphetamine [Presence] in Urine', 'Dextromethamphetamine [Presence] in Urine', 23),
(236, '19424-1', 'Dextromethamphetamine [Presence] in Urine by Confirmatory method', 'Dextromethamphetamine [Presence] in Urine by Confirmatory method', 23),
(237, '19423-3', 'Dextromethamphetamine [Presence] in Urine by Screen method', 'Dextromethamphetamine [Presence] in Urine by Screen method', 23),
(238, '19428-2', 'Dextromethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Dextromethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(239, '19427-4', 'Dextromethamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Dextromethamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(240, '31026-8', 'Dextromethamphetamine/Amphetamines.total in Urine', 'Dextromethamphetamine/Amphetamines.total in Urine', 23),
(241, '13498-1', 'Dextromethamphetamine/Levomethamphetamine [Mass Ratio] in Urine', 'Dextromethamphetamine/Levomethamphetamine [Mass Ratio] in Urine', 23),
(242, 'LP46203-3', 'Dimetamphetamine | Urine', 'Dimetamphetamine | Urine', 23),
(243, '3566-7', 'Dimetamphetamine [Mass/time] in 24 hour Urine', 'Dimetamphetamine [Mass/time] in 24 hour Urine', 23),
(244, '3565-9', 'Dimetamphetamine [Mass/volume] in Urine', 'Dimetamphetamine [Mass/volume] in Urine', 23),
(245, '20526-0', 'Dimetamphetamine [Mass/volume] in Urine by Confirmatory method', 'Dimetamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(246, '3564-2', 'Dimetamphetamine [Presence] in Urine', 'Dimetamphetamine [Presence] in Urine', 23),
(247, '19453-0', 'Dimetamphetamine [Presence] in Urine by Confirmatory method', 'Dimetamphetamine [Presence] in Urine by Confirmatory method', 23),
(248, '19452-2', 'Dimetamphetamine [Presence] in Urine by Screen method', 'Dimetamphetamine [Presence] in Urine by Screen method', 23),
(249, '19455-5', 'Dimetamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Dimetamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(250, '19454-8', 'Dimetamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Dimetamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(251, 'LP44639-0', 'Ethylamphetamine | Urine', 'Ethylamphetamine | Urine', 23),
(252, '19459-7', 'Ethylamphetamine [Mass/volume] in Urine', 'Ethylamphetamine [Mass/volume] in Urine', 23),
(253, '19458-9', 'Ethylamphetamine [Mass/volume] in Urine by Confirmatory method', 'Ethylamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(254, '16212-3', 'Ethylamphetamine [Presence] in Urine by Confirmatory method', 'Ethylamphetamine [Presence] in Urine by Confirmatory method', 23),
(255, '19456-3', 'Ethylamphetamine [Presence] in Urine by Screen method', 'Ethylamphetamine [Presence] in Urine by Screen method', 23),
(256, '19461-3', 'Ethylamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Ethylamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(257, '19460-5', 'Ethylamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Ethylamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(258, 'LP16144-5', 'Fenetylline', 'Fenetylline', 23),
(259, 'LP51269-6', 'Fenetylline | Urine', 'Fenetylline | Urine', 23),
(260, '3629-3', 'Fenetylline [Mass/time] in 24 hour Urine', 'Fenetylline [Mass/time] in 24 hour Urine', 23),
(261, '3628-5', 'Fenetylline [Mass/volume] in Urine', 'Fenetylline [Mass/volume] in Urine', 23),
(262, '3627-7', 'Fenetylline [Presence] in Urine', 'Fenetylline [Presence] in Urine', 23),
(263, 'LP16147-8', 'Fenproporex', 'Fenproporex', 23),
(264, 'LP51273-8', 'Fenproporex | Urine', 'Fenproporex | Urine', 23),
(265, '3635-0', 'Fenproporex [Mass/time] in 24 hour Urine', 'Fenproporex [Mass/time] in 24 hour Urine', 23),
(266, '3634-3', 'Fenproporex [Mass/volume] in Urine', 'Fenproporex [Mass/volume] in Urine', 23),
(267, '3633-5', 'Fenproporex [Presence] in Urine', 'Fenproporex [Presence] in Urine', 23),
(268, 'LP16154-4', 'Furfenorex', 'Furfenorex', 23),
(269, 'LP51278-7', 'Furfenorex | Urine', 'Furfenorex | Urine', 23),
(270, '3658-2', 'Furfenorex [Mass/time] in 24 hour Urine', 'Furfenorex [Mass/time] in 24 hour Urine', 23),
(271, '3657-4', 'Furfenorex [Mass/volume] in Urine', 'Furfenorex [Mass/volume] in Urine', 23),
(272, '3656-6', 'Furfenorex [Presence] in Urine', 'Furfenorex [Presence] in Urine', 23),
(273, 'LP49557-9', 'Levoamphetamine | Urine', 'Levoamphetamine | Urine', 23),
(274, '31016-9', 'Levoamphetamine/Amphetamines.total in Urine', 'Levoamphetamine/Amphetamines.total in Urine', 23),
(275, 'LP42023-9', 'Levomethamphetamine | Urine', 'Levomethamphetamine | Urine', 23),
(276, '12478-4', 'Levomethamphetamine [Mass/volume] in Urine', 'Levomethamphetamine [Mass/volume] in Urine', 23),
(277, '19512-3', 'Levomethamphetamine [Mass/volume] in Urine by Confirmatory method', 'Levomethamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(278, '19511-5', 'Levomethamphetamine [Presence] in Urine by Confirmatory method', 'Levomethamphetamine [Presence] in Urine by Confirmatory method', 23),
(279, '19510-7', 'Levomethamphetamine [Presence] in Urine by Screen method', 'Levomethamphetamine [Presence] in Urine by Screen method', 23),
(280, '19515-6', 'Levomethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Levomethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(281, '19514-9', 'Levomethamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Levomethamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(282, '15404-7', 'Levomethamphetamine/Amphetamines.total in Urine', 'Levomethamphetamine/Amphetamines.total in Urine', 23),
(283, 'LP134010-0', 'Mephedrone | Urine', 'Mephedrone | Urine', 23),
(284, '72795-8', 'Mephedrone [Mass/volume] in Urine by Confirmatory method', 'Mephedrone [Mass/volume] in Urine by Confirmatory method', 23),
(285, '67838-3', 'Mephedrone [Presence] in Urine by Confirmatory method', 'Mephedrone [Presence] in Urine by Confirmatory method', 23),
(286, '72796-6', 'Mephedrone/Creatinine [Mass Ratio] in Urine', 'Mephedrone/Creatinine [Mass Ratio] in Urine', 23),
(287, 'LP16194-0', 'Methamphetamine', 'Methamphetamine', 23),
(288, 'LP45300-8', 'Methamphetamine | Bld-Ser-Plas', 'Methamphetamine | Bld-Ser-Plas', 23),
(289, '3776-2', 'Methamphetamine [Mass/volume] in Blood', 'Methamphetamine [Mass/volume] in Blood', 23),
(290, '3778-8', 'Methamphetamine [Mass/volume] in Serum or Plasma', 'Methamphetamine [Mass/volume] in Serum or Plasma', 23),
(291, '17260-1', 'Methamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Methamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(292, '3777-0', 'Methamphetamine [Presence] in Serum or Plasma', 'Methamphetamine [Presence] in Serum or Plasma', 23),
(293, 'LP43676-3', 'Methamphetamine | Gastric fluid', 'Methamphetamine | Gastric fluid', 23),
(294, '14834-6', 'Methamphetamine [Presence] in Gastric fluid', 'Methamphetamine [Presence] in Gastric fluid', 23),
(295, 'LP52011-1', 'Methamphetamine | Hair', 'Methamphetamine | Hair', 23),
(296, '40652-0', 'Methamphetamine [Presence] in Hair', 'Methamphetamine [Presence] in Hair', 23),
(297, '40803-9', 'Methamphetamine [Presence] in Hair by Screen method', 'Methamphetamine [Presence] in Hair by Screen method', 23),
(298, 'LP44051-8', 'Methamphetamine | Meconium', 'Methamphetamine | Meconium', 23),
(299, '15405-4', 'Methamphetamine [Mass/volume] in Meconium', 'Methamphetamine [Mass/volume] in Meconium', 23),
(300, '27289-8', 'Methamphetamine [Mass/mass] in Meconium', 'Methamphetamine [Mass/mass] in Meconium', 23),
(301, '69022-2', 'Methamphetamine [Mass/mass] in Meconium by Confirmatory method', 'Methamphetamine [Mass/mass] in Meconium by Confirmatory method', 23),
(302, '29286-2', 'Methamphetamine [Presence] in Meconium', 'Methamphetamine [Presence] in Meconium', 23),
(303, 'LP48649-5', 'Methamphetamine | Milk', 'Methamphetamine | Milk', 23),
(304, '27116-3', 'Methamphetamine [Mass/volume] in Milk', 'Methamphetamine [Mass/volume] in Milk', 23),
(305, 'LP52056-6', 'Methamphetamine | Saliva', 'Methamphetamine | Saliva', 23),
(306, '72735-4', 'Methamphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 'Methamphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 23),
(307, '40804-7', 'Methamphetamine [Presence] in Saliva (oral fluid) by Screen method', 'Methamphetamine [Presence] in Saliva (oral fluid) by Screen method', 23),
(308, 'LP48462-3', 'Methamphetamine | Stool', 'Methamphetamine | Stool', 23),
(309, '26734-4', 'Methamphetamine [Mass/mass] in Stool', 'Methamphetamine [Mass/mass] in Stool', 23),
(310, 'LP44655-6', 'Methamphetamine | Urine', 'Methamphetamine | Urine', 23),
(311, '3780-4', 'Methamphetamine [Mass/volume] in Urine', 'Methamphetamine [Mass/volume] in Urine', 23),
(312, '16235-4', 'Methamphetamine [Mass/volume] in Urine by Confirmatory method', 'Methamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(313, '55587-0', 'Methamphetamine [Moles/volume] in Urine', 'Methamphetamine [Moles/volume] in Urine', 23),
(314, '3779-6', 'Methamphetamine [Presence] in Urine', 'Methamphetamine [Presence] in Urine', 23),
(315, '19555-2', 'Methamphetamine [Presence] in Urine by Confirmatory method', 'Methamphetamine [Presence] in Urine by Confirmatory method', 23),
(316, '21386-8', 'Methamphetamine [Presence] in Urine by SAMHSA confirm method', 'Methamphetamine [Presence] in Urine by SAMHSA confirm method', 23),
(317, '19554-5', 'Methamphetamine [Presence] in Urine by Screen method', 'Methamphetamine [Presence] in Urine by Screen method', 23),
(318, '19557-8', 'Methamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Methamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(319, '19556-0', 'Methamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Methamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(320, '58358-3', 'Methamphetamine/Creatinine [Mass Ratio] in Urine', 'Methamphetamine/Creatinine [Mass Ratio] in Urine', 23),
(321, 'LP48222-1', 'Methamphetamine | Vitreous fluid', 'Methamphetamine | Vitreous fluid', 23),
(322, '27277-3', 'Methamphetamine [Mass/volume] in Vitreous fluid', 'Methamphetamine [Mass/volume] in Vitreous fluid', 23),
(323, 'LP51892-5', 'Methamphetamine | XXX', 'Methamphetamine | XXX', 23),
(324, '40381-6', 'Methamphetamine [Presence] in Unspecified specimen', 'Methamphetamine [Presence] in Unspecified specimen', 23),
(325, 'LP21172-9', 'Methylenedioxyethylamphetamine', 'Methylenedioxyethylamphetamine', 23),
(326, 'LP49154-5', 'Methylenedioxyethylamphetamine | Bld-Ser-Plas', 'Methylenedioxyethylamphetamine | Bld-Ser-Plas', 23),
(327, '33016-7', 'Methylenedioxyethylamphetamine [Mass/volume] in Serum or Plasma', 'Methylenedioxyethylamphetamine [Mass/volume] in Serum or Plasma', 23),
(328, '29599-8', 'Methylenedioxyethylamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Methylenedioxyethylamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(329, '61047-7', 'Methylenedioxyethylamphetamine [Presence] in Serum or Plasma', 'Methylenedioxyethylamphetamine [Presence] in Serum or Plasma', 23),
(330, 'LP102273-2', 'Methylenedioxyethylamphetamine | Gastric fluid', 'Methylenedioxyethylamphetamine | Gastric fluid', 23),
(331, '61082-4', 'Methylenedioxyethylamphetamine [Presence] in Gastric fluid', 'Methylenedioxyethylamphetamine [Presence] in Gastric fluid', 23),
(332, 'LP48632-1', 'Methylenedioxyethylamphetamine | Meconium', 'Methylenedioxyethylamphetamine | Meconium', 23),
(333, '27080-1', 'Methylenedioxyethylamphetamine [Mass/mass] in Meconium', 'Methylenedioxyethylamphetamine [Mass/mass] in Meconium', 23),
(334, '69024-8', 'Methylenedioxyethylamphetamine [Mass/mass] in Meconium by Confirmatory method', 'Methylenedioxyethylamphetamine [Mass/mass] in Meconium by Confirmatory method', 23),
(335, 'LP48625-5', 'Methylenedioxyethylamphetamine | Milk', 'Methylenedioxyethylamphetamine | Milk', 23),
(336, '27074-4', 'Methylenedioxyethylamphetamine [Mass/volume] in Milk', 'Methylenedioxyethylamphetamine [Mass/volume] in Milk', 23),
(337, 'LP48631-3', 'Methylenedioxyethylamphetamine | Stool', 'Methylenedioxyethylamphetamine | Stool', 23),
(338, '27079-3', 'Methylenedioxyethylamphetamine [Mass/mass] in Stool', 'Methylenedioxyethylamphetamine [Mass/mass] in Stool', 23),
(339, 'LP48636-2', 'Methylenedioxyethylamphetamine | Urine', 'Methylenedioxyethylamphetamine | Urine', 23),
(340, '27085-0', 'Methylenedioxyethylamphetamine [Mass/volume] in Urine', 'Methylenedioxyethylamphetamine [Mass/volume] in Urine', 23),
(341, '45143-5', 'Methylenedioxyethylamphetamine [Mass/volume] in Urine by Confirmatory method', 'Methylenedioxyethylamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(342, '61048-5', 'Methylenedioxyethylamphetamine [Presence] in Urine', 'Methylenedioxyethylamphetamine [Presence] in Urine', 23),
(343, '59844-1', 'Methylenedioxyethylamphetamine [Presence] in Urine by Screen method', 'Methylenedioxyethylamphetamine [Presence] in Urine by Screen method', 23),
(344, '64127-4', 'Methylenedioxyethylamphetamine/Creatinine [Mass Ratio] in Urine', 'Methylenedioxyethylamphetamine/Creatinine [Mass Ratio] in Urine', 23),
(345, 'LP48718-8', 'Methylenedioxyethylamphetamine | Vitreous fluid', 'Methylenedioxyethylamphetamine | Vitreous fluid', 23),
(346, '27299-7', 'Methylenedioxyethylamphetamine [Mass/volume] in Vitreous fluid', 'Methylenedioxyethylamphetamine [Mass/volume] in Vitreous fluid', 23),
(347, 'LP102255-9', 'Methylenedioxyethylamphetamine | XXX', 'Methylenedioxyethylamphetamine | XXX', 23),
(348, '61049-3', 'Methylenedioxyethylamphetamine [Presence] in Unspecified specimen', 'Methylenedioxyethylamphetamine [Presence] in Unspecified specimen', 23),
(349, 'LP18612-9', 'Methylenedioxymethamphetamine', 'Methylenedioxymethamphetamine', 23),
(350, 'LP19144-2', 'Methylenedianiline', 'Methylenedianiline', 23),
(351, 'LP51734-9', 'Methylenedianiline | Air', 'Methylenedianiline | Air', 23),
(352, '38748-0', 'Methylenedianiline [Mass/volume] in Air', 'Methylenedianiline [Mass/volume] in Air', 23),
(353, 'LP45310-7', 'Methylenedianiline | Bld-Ser-Plas', 'Methylenedianiline | Bld-Ser-Plas', 23),
(354, '17272-6', 'Methylenedianiline [Mass/volume] in Blood', 'Methylenedianiline [Mass/volume] in Blood', 23),
(355, '33646-1', 'Methylenedianiline [Mass/volume] in Serum or Plasma', 'Methylenedianiline [Mass/volume] in Serum or Plasma', 23),
(356, 'LP48761-8', 'Methylenedianiline | Urine', 'Methylenedianiline | Urine', 23),
(357, '27409-2', 'Methylenedianiline [Mass/volume] in Urine', 'Methylenedianiline [Mass/volume] in Urine', 23),
(358, 'LP19292-9', 'Methylenedioxyamphetamine', 'Methylenedioxyamphetamine', 23),
(359, 'LP45784-3', 'Methylenedioxyamphetamine | Bld-Ser-Plas', 'Methylenedioxyamphetamine | Bld-Ser-Plas', 23),
(360, '18359-0', 'Methylenedioxyamphetamine [Mass/volume] in Blood', 'Methylenedioxyamphetamine [Mass/volume] in Blood', 23),
(361, '59837-5', 'Methylenedioxyamphetamine [Mass/volume] in Serum or Plasma', 'Methylenedioxyamphetamine [Mass/volume] in Serum or Plasma', 23),
(362, '29598-0', 'Methylenedioxyamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Methylenedioxyamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(363, '55551-6', 'Methylenedioxyamphetamine [Moles/volume] in Serum or Plasma', 'Methylenedioxyamphetamine [Moles/volume] in Serum or Plasma', 23),
(364, '61045-1', 'Methylenedioxyamphetamine [Presence] in Serum or Plasma', 'Methylenedioxyamphetamine [Presence] in Serum or Plasma', 23),
(365, 'LP51949-3', 'Methylenedioxyamphetamine | Gastric fluid', 'Methylenedioxyamphetamine | Gastric fluid', 23),
(366, '40531-6', 'Methylenedioxyamphetamine [Presence] in Gastric fluid', 'Methylenedioxyamphetamine [Presence] in Gastric fluid', 23),
(367, 'LP48704-8', 'Methylenedioxyamphetamine | Meconium', 'Methylenedioxyamphetamine | Meconium', 23),
(368, '27244-3', 'Methylenedioxyamphetamine [Mass/mass] in Meconium', 'Methylenedioxyamphetamine [Mass/mass] in Meconium', 23),
(369, '69023-0', 'Methylenedioxyamphetamine [Mass/mass] in Meconium by Confirmatory method', 'Methylenedioxyamphetamine [Mass/mass] in Meconium by Confirmatory method', 23),
(370, 'LP48464-9', 'Methylenedioxyamphetamine | Milk', 'Methylenedioxyamphetamine | Milk', 23),
(371, '26742-7', 'Methylenedioxyamphetamine [Mass/volume] in Milk', 'Methylenedioxyamphetamine [Mass/volume] in Milk', 23),
(372, 'LP158103-4', 'Methylenedioxyamphetamine | Saliva', 'Methylenedioxyamphetamine | Saliva', 23),
(373, '72736-2', 'Methylenedioxyamphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 'Methylenedioxyamphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 23),
(374, 'LP48484-7', 'Methylenedioxyamphetamine | Stool', 'Methylenedioxyamphetamine | Stool', 23),
(375, '26792-2', 'Methylenedioxyamphetamine [Mass/mass] in Stool', 'Methylenedioxyamphetamine [Mass/mass] in Stool', 23),
(376, 'LP45781-9', 'Methylenedioxyamphetamine | Urine', 'Methylenedioxyamphetamine | Urine', 23),
(377, '18355-8', 'Methylenedioxyamphetamine [Mass/volume] in Urine', 'Methylenedioxyamphetamine [Mass/volume] in Urine', 23),
(378, '20545-0', 'Methylenedioxyamphetamine [Mass/volume] in Urine by Confirmatory method', 'Methylenedioxyamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(379, '42253-5', 'Methylenedioxyamphetamine [Presence] in Urine', 'Methylenedioxyamphetamine [Presence] in Urine', 23),
(380, '19566-9', 'Methylenedioxyamphetamine [Presence] in Urine by Confirmatory method', 'Methylenedioxyamphetamine [Presence] in Urine by Confirmatory method', 23),
(381, '19565-1', 'Methylenedioxyamphetamine [Presence] in Urine by Screen method', 'Methylenedioxyamphetamine [Presence] in Urine by Screen method', 23),
(382, '20546-8', 'Methylenedioxyamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Methylenedioxyamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(383, '19567-7', 'Methylenedioxyamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Methylenedioxyamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(384, '64138-1', 'Methylenedioxyamphetamine/Creatinine [Mass Ratio] in Urine', 'Methylenedioxyamphetamine/Creatinine [Mass Ratio] in Urine', 23),
(385, 'LP48678-4', 'Methylenedioxyamphetamine | Vitreous fluid', 'Methylenedioxyamphetamine | Vitreous fluid', 23),
(386, '27189-0', 'Methylenedioxyamphetamine [Mass/volume] in Vitreous fluid', 'Methylenedioxyamphetamine [Mass/volume] in Vitreous fluid', 23),
(387, 'LP102254-2', 'Methylenedioxyamphetamine | XXX', 'Methylenedioxyamphetamine | XXX', 23),
(388, '61046-9', 'Methylenedioxyamphetamine [Presence] in Unspecified specimen', 'Methylenedioxyamphetamine [Presence] in Unspecified specimen', 23),
(389, 'LP45782-7', 'Methylenedioxymethamphetamine | Bld-Ser-Plas', 'Methylenedioxymethamphetamine | Bld-Ser-Plas', 23),
(390, '18357-4', 'Methylenedioxymethamphetamine [Mass/volume] in Blood', 'Methylenedioxymethamphetamine [Mass/volume] in Blood', 23),
(391, '18356-6', 'Methylenedioxymethamphetamine [Mass/volume] in Serum or Plasma', 'Methylenedioxymethamphetamine [Mass/volume] in Serum or Plasma', 23),
(392, '29619-4', 'Methylenedioxymethamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Methylenedioxymethamphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(393, '40493-9', 'Methylenedioxymethamphetamine [Presence] in Serum or Plasma', 'Methylenedioxymethamphetamine [Presence] in Serum or Plasma', 23),
(394, 'LP102274-0', 'Methylenedioxymethamphetamine | Gastric fluid', 'Methylenedioxymethamphetamine | Gastric fluid', 23),
(395, '61083-2', 'Methylenedioxymethamphetamine [Presence] in Gastric fluid', 'Methylenedioxymethamphetamine [Presence] in Gastric fluid', 23),
(396, 'LP135765-8', 'Methylenedioxymethamphetamine | Meconium', 'Methylenedioxymethamphetamine | Meconium', 23),
(397, '69025-5', 'Methylenedioxymethamphetamine [Mass/mass] in Meconium by Confirmatory method', 'Methylenedioxymethamphetamine [Mass/mass] in Meconium by Confirmatory method', 23),
(398, 'LP48485-4', 'Methylenedioxymethamphetamine | Stool', 'Methylenedioxymethamphetamine | Stool', 23),
(399, '26793-0', 'Methylenedioxymethamphetamine [Mass/mass] in Stool', 'Methylenedioxymethamphetamine [Mass/mass] in Stool', 23),
(400, 'LP43225-9', 'Methylenedioxymethamphetamine | Urine', 'Methylenedioxymethamphetamine | Urine', 23),
(401, '19570-1', 'Methylenedioxymethamphetamine [Mass/volume] in Urine', 'Methylenedioxymethamphetamine [Mass/volume] in Urine', 23),
(402, '18358-2', 'Methylenedioxymethamphetamine [Mass/volume] in Urine by Confirmatory method', 'Methylenedioxymethamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(403, '14267-9', 'Methylenedioxymethamphetamine [Presence] in Urine', 'Methylenedioxymethamphetamine [Presence] in Urine', 23),
(404, '19569-3', 'Methylenedioxymethamphetamine [Presence] in Urine by Confirmatory method', 'Methylenedioxymethamphetamine [Presence] in Urine by Confirmatory method', 23),
(405, '19568-5', 'Methylenedioxymethamphetamine [Presence] in Urine by Screen method', 'Methylenedioxymethamphetamine [Presence] in Urine by Screen method', 23),
(406, '19572-7', 'Methylenedioxymethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Methylenedioxymethamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(407, '19571-9', 'Methylenedioxymethamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Methylenedioxymethamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(408, '44424-0', 'Methylenedioxymethamphetamine/Creatinine [Mass Ratio] in Urine', 'Methylenedioxymethamphetamine/Creatinine [Mass Ratio] in Urine', 23),
(409, 'LP48677-6', 'Methylenedioxymethamphetamine | Vitreous fluid', 'Methylenedioxymethamphetamine | Vitreous fluid', 23),
(410, '27188-2', 'Methylenedioxymethamphetamine [Mass/volume] in Vitreous fluid', 'Methylenedioxymethamphetamine [Mass/volume] in Vitreous fluid', 23),
(411, 'LP51930-3', 'Methylenedioxymethamphetamine | XXX', 'Methylenedioxymethamphetamine | XXX', 23),
(412, '40481-4', 'Methylenedioxymethamphetamine [Presence] in Unspecified specimen', 'Methylenedioxymethamphetamine [Presence] in Unspecified specimen', 23),
(413, 'LP163969-1', 'Methylone | Urine', 'Methylone | Urine', 23),
(414, '72793-3', 'Methylone [Mass/volume] in Urine by Confirmatory method', 'Methylone [Mass/volume] in Urine by Confirmatory method', 23),
(415, '73686-8', 'Methylone [Presence] in Urine by Screen method', 'Methylone [Presence] in Urine by Screen method', 23),
(416, '72794-1', 'Methylone/Creatinine [Mass Ratio] in Urine', 'Methylone/Creatinine [Mass Ratio] in Urine', 23),
(417, 'LP16202-1', 'Methylphenidate', 'Methylphenidate', 23),
(418, 'LP29634-0', 'Alpha-Phenyl-2-Piperidine acetate', 'Alpha-Phenyl-2-Piperidine acetate', 23),
(419, 'LP49898-7', 'Alpha-phenyl-2-piperidine Acetate | Bld-Ser-Plas', 'Alpha-phenyl-2-piperidine Acetate | Bld-Ser-Plas', 23),
(420, '32153-9', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Serum or Plasma', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Serum or Plasma', 23),
(421, 'LP102280-7', 'Alpha-Phenyl-2-Piperidine acetate | Gastric fluid', 'Alpha-Phenyl-2-Piperidine acetate | Gastric fluid', 23),
(422, '61090-7', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Gastric fluid', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Gastric fluid', 23),
(423, 'LP50416-4', 'Alpha-phenyl-2-piperidine Acetate | Urine', 'Alpha-phenyl-2-piperidine Acetate | Urine', 23),
(424, '33507-5', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Urine', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Urine', 23),
(425, '72790-9', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Urine by Confirmatory method', 'Alpha-Phenyl-2-Piperidine acetate [Mass/volume] in Urine by Confirmatory method', 23),
(426, '61058-4', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Urine', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Urine', 23),
(427, '72791-7', 'Alpha-Phenyl-2-Piperidine acetate/Creatinine [Mass Ratio] in Urine', 'Alpha-Phenyl-2-Piperidine acetate/Creatinine [Mass Ratio] in Urine', 23),
(428, 'LP102260-9', 'Alpha-Phenyl-2-Piperidine acetate | XXX', 'Alpha-Phenyl-2-Piperidine acetate | XXX', 23),
(429, '61059-2', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Unspecified specimen', 'Alpha-Phenyl-2-Piperidine acetate [Presence] in Unspecified specimen', 23),
(430, 'LP51335-5', 'Methylphenidate | Bld-Ser-Plas', 'Methylphenidate | Bld-Ser-Plas', 23),
(431, '3807-5', 'Methylphenidate [Mass/volume] in Serum or Plasma', 'Methylphenidate [Mass/volume] in Serum or Plasma', 23),
(432, '55552-4', 'Methylphenidate [Moles/volume] in Serum or Plasma', 'Methylphenidate [Moles/volume] in Serum or Plasma', 23),
(433, '3806-7', 'Methylphenidate [Presence] in Serum or Plasma', 'Methylphenidate [Presence] in Serum or Plasma', 23),
(434, 'LP102275-7', 'Methylphenidate | Gastric fluid', 'Methylphenidate | Gastric fluid', 23),
(435, '61084-0', 'Methylphenidate [Presence] in Gastric fluid', 'Methylphenidate [Presence] in Gastric fluid', 23),
(436, 'LP46215-7', 'Methylphenidate | Urine', 'Methylphenidate | Urine', 23),
(437, '3810-9', 'Methylphenidate [Mass/time] in 24 hour Urine', 'Methylphenidate [Mass/time] in 24 hour Urine', 23),
(438, '3809-1', 'Methylphenidate [Mass/volume] in Urine', 'Methylphenidate [Mass/volume] in Urine', 23),
(439, '20548-4', 'Methylphenidate [Mass/volume] in Urine by Confirmatory method', 'Methylphenidate [Mass/volume] in Urine by Confirmatory method', 23),
(440, '3808-3', 'Methylphenidate [Presence] in Urine', 'Methylphenidate [Presence] in Urine', 23),
(441, '19578-4', 'Methylphenidate [Presence] in Urine by Confirmatory method', 'Methylphenidate [Presence] in Urine by Confirmatory method', 23),
(442, '19577-6', 'Methylphenidate [Presence] in Urine by Screen method', 'Methylphenidate [Presence] in Urine by Screen method', 23),
(443, '19580-0', 'Methylphenidate cutoff [Mass/volume] in Urine for Confirmatory method', 'Methylphenidate cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(444, '19579-2', 'Methylphenidate cutoff [Mass/volume] in Urine for Screen method', 'Methylphenidate cutoff [Mass/volume] in Urine for Screen method', 23),
(445, '72792-5', 'Methylphenidate/Creatinine [Mass Ratio] in Urine', 'Methylphenidate/Creatinine [Mass Ratio] in Urine', 23),
(446, 'LP102256-7', 'Methylphenidate | XXX', 'Methylphenidate | XXX', 23),
(447, '61050-1', 'Methylphenidate [Presence] in Unspecified specimen', 'Methylphenidate [Presence] in Unspecified specimen', 23),
(448, 'LP16234-4', 'Para hydroxyamphetamine', 'Para hydroxyamphetamine', 23),
(449, 'LP46221-5', 'Para Hydroxyamphetamine | Urine', 'Para Hydroxyamphetamine | Urine', 23),
(450, '3903-2', 'Para hydroxyamphetamine [Mass/time] in 24 hour Urine', 'Para hydroxyamphetamine [Mass/time] in 24 hour Urine', 23),
(451, '3902-4', 'Para hydroxyamphetamine [Mass/volume] in Urine', 'Para hydroxyamphetamine [Mass/volume] in Urine', 23),
(452, '20554-2', 'Para hydroxyamphetamine [Mass/volume] in Urine by Confirmatory method', 'Para hydroxyamphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(453, '3901-6', 'Para hydroxyamphetamine [Presence] in Urine', 'Para hydroxyamphetamine [Presence] in Urine', 23),
(454, '19652-7', 'Para hydroxyamphetamine [Presence] in Urine by Confirmatory method', 'Para hydroxyamphetamine [Presence] in Urine by Confirmatory method', 23),
(455, '19651-9', 'Para hydroxyamphetamine [Presence] in Urine by Screen method', 'Para hydroxyamphetamine [Presence] in Urine by Screen method', 23),
(456, '19654-3', 'Para hydroxyamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Para hydroxyamphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(457, '19653-5', 'Para hydroxyamphetamine cutoff [Mass/volume] in Urine for Screen method', 'Para hydroxyamphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(458, 'LP16245-0', 'Phendimetrazine', 'Phendimetrazine', 23),
(459, 'LP49165-1', 'Phendimetrazine | Bld-Ser-Plas', 'Phendimetrazine | Bld-Ser-Plas', 23),
(460, '3938-8', 'Phendimetrazine [Mass/volume] in Serum or Plasma', 'Phendimetrazine [Mass/volume] in Serum or Plasma', 23),
(461, '29613-7', 'Phendimetrazine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Phendimetrazine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(462, 'LP48445-8', 'Phendimetrazine | Meconium', 'Phendimetrazine | Meconium', 23),
(463, '26711-2', 'Phendimetrazine [Mass/mass] in Meconium', 'Phendimetrazine [Mass/mass] in Meconium', 23),
(464, 'LP48644-6', 'Phendimetrazine | Milk', 'Phendimetrazine | Milk', 23),
(465, '27102-3', 'Phendimetrazine [Mass/volume] in Milk', 'Phendimetrazine [Mass/volume] in Milk', 23),
(466, 'LP48722-0', 'Phendimetrazine | Stool', 'Phendimetrazine | Stool', 23),
(467, '27303-7', 'Phendimetrazine [Mass/mass] in Stool', 'Phendimetrazine [Mass/mass] in Stool', 23),
(468, 'LP51821-4', 'Phendimetrazine | Urine', 'Phendimetrazine | Urine', 23),
(469, '3941-2', 'Phendimetrazine [Mass/time] in 24 hour Urine', 'Phendimetrazine [Mass/time] in 24 hour Urine', 23),
(470, '3940-4', 'Phendimetrazine [Mass/volume] in Urine', 'Phendimetrazine [Mass/volume] in Urine', 23),
(471, '3939-6', 'Phendimetrazine [Presence] in Urine', 'Phendimetrazine [Presence] in Urine', 23),
(472, 'LP48672-7', 'Phendimetrazine | Vitreous fluid', 'Phendimetrazine | Vitreous fluid', 23),
(473, '27178-3', 'Phendimetrazine [Mass/volume] in Vitreous fluid', 'Phendimetrazine [Mass/volume] in Vitreous fluid', 23),
(474, 'LP18064-3', 'Phenethylamine', 'Phenethylamine', 23),
(475, 'LP145348-1', '2,5-dimethoxy-4-bromoamphetamine | Urine', '2,5-dimethoxy-4-bromoamphetamine | Urine', 23),
(476, '69798-7', '2,5-dimethoxy-4-bromoamphetamine [Presence] in Urine', '2,5-dimethoxy-4-bromoamphetamine [Presence] in Urine', 23),
(477, 'LP41878-7', 'Phenethylamine | Urine', 'Phenethylamine | Urine', 23),
(478, '12331-5', 'Phenethylamine [Presence] in Urine', 'Phenethylamine [Presence] in Urine', 23),
(479, 'LP16254-2', 'Pholedrine', 'Pholedrine', 23),
(480, 'LP51843-8', 'Pholedrine | Urine', 'Pholedrine | Urine', 23),
(481, '3970-1', 'Pholedrine [Mass/volume] in Urine', 'Pholedrine [Mass/volume] in Urine', 23),
(482, 'LP49150-3', 'Amphetamine | Bld-Ser-Plas', 'Amphetamine | Bld-Ser-Plas', 23),
(483, '42576-9', 'Amphetamine [Mass/volume] in Blood by Confirmatory method', 'Amphetamine [Mass/volume] in Blood by Confirmatory method', 23),
(484, '30112-7', 'Amphetamine [Mass/volume] in Serum or Plasma', 'Amphetamine [Mass/volume] in Serum or Plasma', 23),
(485, '29592-3', 'Amphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 'Amphetamine [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(486, '66127-2', 'Amphetamine [Presence] in Serum or Plasma by Confirmatory method', 'Amphetamine [Presence] in Serum or Plasma by Confirmatory method', 23),
(487, 'LP48573-7', 'Amphetamine | Meconium', 'Amphetamine | Meconium', 23),
(488, '26959-7', 'Amphetamine [Mass/mass] in Meconium', 'Amphetamine [Mass/mass] in Meconium', 23),
(489, 'LP158117-4', 'Amphetamine | Saliva', 'Amphetamine | Saliva', 23),
(490, '72758-6', 'Amphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 'Amphetamine [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 23),
(491, 'LP48483-9', 'Amphetamine | Stool', 'Amphetamine | Stool', 23),
(492, '26791-4', 'Amphetamine [Mass/mass] in Stool', 'Amphetamine [Mass/mass] in Stool', 23),
(493, 'LP44654-9', 'Amphetamine | Urine', 'Amphetamine | Urine', 23),
(494, '19346-6', 'Amphetamine [Mass/volume] in Urine', 'Amphetamine [Mass/volume] in Urine', 23),
(495, '16234-7', 'Amphetamine [Mass/volume] in Urine by Confirmatory method', 'Amphetamine [Mass/volume] in Urine by Confirmatory method', 23),
(496, '52957-8', 'Amphetamine [Moles/volume] in Urine', 'Amphetamine [Moles/volume] in Urine', 23),
(497, '19344-1', 'Amphetamine [Presence] in Urine by Confirmatory method', 'Amphetamine [Presence] in Urine by Confirmatory method', 23),
(498, '19343-3', 'Amphetamine [Presence] in Urine by Screen method', 'Amphetamine [Presence] in Urine by Screen method', 23),
(499, '19348-2', 'Amphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 'Amphetamine cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(500, '19347-4', 'Amphetamine cutoff [Mass/volume] in Urine for Screen method', 'Amphetamine cutoff [Mass/volume] in Urine for Screen method', 23),
(501, '58357-5', 'Amphetamine/Creatinine [Mass Ratio] in Urine', 'Amphetamine/Creatinine [Mass Ratio] in Urine', 23),
(502, 'LP16058-7', 'Cannabinoids', 'Cannabinoids', 23),
(503, 'LP130276-1', 'Cannabinoids synthetic', 'Cannabinoids synthetic', 23),
(504, 'LP172807-2', 'AM-2201 (synthetic cannabinoid)', 'AM-2201 (synthetic cannabinoid)', 23),
(505, 'LP157288-4', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite)', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite)', 23),
(506, 'LP179303-5', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(507, '73925-0', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(508, 'LP176666-8', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(509, '72817-0', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(510, '72463-3', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(511, '72818-8', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'AM-2201 4-hydroxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(512, 'LP177283-1', 'AM-2201 (synthetic cannabinoid) | Bld-Ser-Plas', 'AM-2201 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(513, '73952-4', 'AM-2201 (synthetic cannabinoid) [Presence] in Blood', 'AM-2201 (synthetic cannabinoid) [Presence] in Blood', 23),
(514, 'LP172774-4', 'JWH-018 (synthetic cannabinoid)', 'JWH-018 (synthetic cannabinoid)', 23),
(515, 'LP157281-9', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites)', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites)', 23),
(516, 'LP179179-9', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Bld-Ser-Plas', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Bld-Ser-Plas', 23),
(517, '73920-1', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Blood', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Blood', 23),
(518, 'LP176889-6', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Urine', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Urine', 23),
(519, '72459-1', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Urine by Confirmatory method', 'JWH-018 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Urine by Confirmatory method', 23),
(520, 'LP179814-1', 'JWH-018 carboxylated (synthetic cannabinoid metabolite) | Urine', 'JWH-018 carboxylated (synthetic cannabinoid metabolite) | Urine', 23),
(521, '72808-9', 'JWH-018 carboxylated (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-018 carboxylated (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(522, '72809-7', 'JWH-018 carboxylated (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-018 carboxylated (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(523, 'LP157286-8', 'JWH-018 pentanoate (synthetic cannabinoid metabolite)', 'JWH-018 pentanoate (synthetic cannabinoid metabolite)', 23),
(524, 'LP180956-7', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(525, '73923-5', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(526, 'LP178330-9', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) | Urine', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) | Urine', 23),
(527, '72782-6', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(528, '72461-7', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-018 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(529, '72783-4', 'JWH-018 pentanoate (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-018 pentanoate (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(530, 'LP178378-8', 'JWH-018 pentanol (synthetic cannabinoid metabolite) | Urine', 'JWH-018 pentanol (synthetic cannabinoid metabolite) | Urine', 23),
(531, '72780-0', 'JWH-018 pentanol (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-018 pentanol (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(532, '72781-8', 'JWH-018 pentanol (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-018 pentanol (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(533, 'LP178589-0', 'JWH-018 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-018 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(534, '73949-0', 'JWH-018 (Synthetic cannabinoid) [Presence] in Blood', 'JWH-018 (Synthetic cannabinoid) [Presence] in Blood', 23),
(535, 'LP178588-2', 'JWH-018 (synthetic cannabinoid) | Urine', 'JWH-018 (synthetic cannabinoid) | Urine', 23),
(536, '73914-4', 'JWH-018 (Synthetic cannabinoid) [Presence] in Urine by Confirmatory method', 'JWH-018 (Synthetic cannabinoid) [Presence] in Urine by Confirmatory method', 23),
(537, 'LP172775-1', 'JWH-073 (synthetic cannabinoid)', 'JWH-073 (synthetic cannabinoid)', 23),
(538, 'LP157282-7', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite)', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite)', 23),
(539, 'LP180020-2', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(540, '73921-9', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(541, 'LP178329-1', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) | Urine', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) | Urine', 23),
(542, '72460-9', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-073 3-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(543, 'LP157289-2', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite)', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite)', 23),
(544, 'LP180879-1', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(545, '73926-8', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(546, 'LP178331-7', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) | Urine', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) | Urine', 23),
(547, '72464-1', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-073 4-hydroxybutyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(548, 'LP157290-0', 'JWH-073 butanoate (synthetic cannabinoid metabolite)', 'JWH-073 butanoate (synthetic cannabinoid metabolite)', 23),
(549, 'LP177280-7', 'JWH-073 butanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-073 butanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(550, '73927-6', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(551, 'LP178154-3', 'JWH-073 butanoate (synthetic cannabinoid metabolite) | Urine', 'JWH-073 butanoate (synthetic cannabinoid metabolite) | Urine', 23),
(552, '72778-4', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(553, '72465-8', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-073 butanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(554, '72779-2', 'JWH-073 butanoate (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-073 butanoate (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(555, 'LP179035-3', 'JWH-073 butanol (synthetic cannabinoid metabolite) | Urine', 'JWH-073 butanol (synthetic cannabinoid metabolite) | Urine', 23),
(556, '72875-8', 'JWH-073 butanol (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-073 butanol (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(557, '72874-1', 'JWH-073 butanol (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-073 butanol (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(558, 'LP178489-3', 'JWH-073 carboxylated (synthetic cannabinoid metabolite) | Urine', 'JWH-073 carboxylated (synthetic cannabinoid metabolite) | Urine', 23),
(559, '72806-3', 'JWH-073 carboxylated (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-073 carboxylated (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(560, '72807-1', 'JWH-073 carboxylated (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-073 carboxylated (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(561, 'LP178590-8', 'JWH-073 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-073 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(562, '73953-2', 'JWH-073 (Synthetic cannabinoid) [Presence] in Blood', 'JWH-073 (Synthetic cannabinoid) [Presence] in Blood', 23),
(563, 'LP182207-3', 'JWH-073 (synthetic cannabinoid) | Urine', 'JWH-073 (synthetic cannabinoid) | Urine', 23),
(564, '73918-5', 'JWH-073 (Synthetic cannabinoid) [Presence] in Urine by Confirmatory method', 'JWH-073 (Synthetic cannabinoid) [Presence] in Urine by Confirmatory method', 23),
(565, 'LP172808-0', 'JWH-122 (synthetic cannabinoid)', 'JWH-122 (synthetic cannabinoid)', 23),
(566, 'LP157300-7', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite)', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite)', 23),
(567, 'LP179864-6', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(568, '73956-5', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(569, 'LP177416-7', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(570, '72474-0', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-122 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(571, 'LP180794-2', 'JWH-122 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-122 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(572, '73948-2', 'JWH-122 (Synthetic cannabinoid) [Presence] in Blood', 'JWH-122 (Synthetic cannabinoid) [Presence] in Blood', 23),
(573, 'LP172809-8', 'JWH-200 (synthetic cannabinoid)', 'JWH-200 (synthetic cannabinoid)', 23),
(574, 'LP157287-6', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite)', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite)', 23),
(575, 'LP179855-4', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(576, '73924-3', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(577, 'LP178805-0', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) | Urine', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) | Urine', 23),
(578, '72462-5', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-200 4-hydroxyindole (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(579, 'LP181189-4', 'JWH-200 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-200 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(580, '73946-6', 'JWH-200 (synthetic cannabinoid) [Presence] in Blood', 'JWH-200 (synthetic cannabinoid) [Presence] in Blood', 23),
(581, 'LP177547-9', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(582, '72804-8', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(583, '72805-5', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-210 5-carboxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(584, 'LP172810-6', 'JWH-250 (synthetic cannabinoid)', 'JWH-250 (synthetic cannabinoid)', 23),
(585, 'LP177544-6', 'JWH-250 4/5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-250 4/5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(586, '73917-7', 'JWH-250 4/5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-250 4/5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(587, 'LP157292-6', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite)', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite)', 23),
(588, 'LP177281-5', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(589, '73929-2', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(590, 'LP177682-4', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(591, '72802-2', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Mass/volume] in Urine by Confirmatory method', 23),
(592, '72467-4', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(593, '72803-0', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 'JWH-250 5-carboxypentyl (synthetic cannabinoid metabolite)/Creatinine [Mass Ratio] in Urine', 23),
(594, 'LP157291-8', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite)', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite)', 23),
(595, 'LP179615-2', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(596, '73928-4', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(597, 'LP177415-9', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(598, '72466-6', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-250 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(599, 'LP180426-1', 'JWH-250 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-250 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(600, '73950-8', 'JWH-250 (synthetic cannabinoid) [Presence] in Blood', 'JWH-250 (synthetic cannabinoid) [Presence] in Blood', 23),
(601, 'LP172811-4', 'JWH-398 (synthetic cannabinoid)', 'JWH-398 (synthetic cannabinoid)', 23),
(602, 'LP157299-1', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite)', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite)', 23),
(603, 'LP178591-6', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(604, '73954-0', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(605, 'LP177683-2', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(606, '72473-2', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'JWH-398 5 hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(607, 'LP177282-3', 'JWH-398 (synthetic cannabinoid) | Bld-Ser-Plas', 'JWH-398 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(608, '73947-4', 'JWH-398 (synthetic cannabinoid) [Presence] in Blood', 'JWH-398 (synthetic cannabinoid) [Presence] in Blood', 23),
(609, 'LP172812-2', 'MAM-2201 (synthetic cannabinoid)', 'MAM-2201 (synthetic cannabinoid)', 23),
(610, 'LP157296-7', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite)', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite)', 23),
(611, 'LP178788-8', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(612, '73919-3', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(613, 'LP178806-8', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) | Urine', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) | Urine', 23),
(614, '72470-8', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'MAM-2201 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(615, 'LP178305-1', 'MAM-2201 (synthetic cannabinoid) | Bld-Ser-Plas', 'MAM-2201 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(616, '73944-1', 'MAM-2201 (synthetic cannabinoid) [Presence] in Blood', 'MAM-2201 (synthetic cannabinoid) [Presence] in Blood', 23),
(617, 'LP172813-0', 'RCS-4 (synthetic cannabinoid)', 'RCS-4 (synthetic cannabinoid)', 23),
(618, 'LP157295-9', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite)', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite)', 23),
(619, 'LP176693-2', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(620, '73930-0', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(621, 'LP176890-4', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(622, '72469-0', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'RCS-4 5-carboxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(623, 'LP157294-2', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite)', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite)', 23),
(624, 'LP180938-5', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(625, '73922-7', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(626, 'LP177659-2', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) | Urine', 23),
(627, '72468-2', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'RCS-4 5-hydroxypentyl (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(628, 'LP180611-8', 'RCS-4 (synthetic cannabinoid) | Bld-Ser-Plas', 'RCS-4 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(629, '73951-6', 'RCS-4 (synthetic cannabinoid) [Presence] in Blood', 'RCS-4 (synthetic cannabinoid) [Presence] in Blood', 23),
(630, 'LP172814-8', 'UR-144 (synthetic cannabinoid)', 'UR-144 (synthetic cannabinoid)', 23),
(631, 'LP157297-5', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites)', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites)', 23),
(632, 'LP182173-7', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Bld-Ser-Plas', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Bld-Ser-Plas', 23),
(633, '73955-7', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Blood', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Blood', 23),
(634, 'LP178523-9', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Urine', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) | Urine', 23),
(635, '72471-6', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Urine by Confirmatory method', 'UR-144 4/5-hydroxypentyl (synthetic cannabinoid metabolites) [Presence] in Urine by Confirmatory method', 23),
(636, 'LP157298-3', 'UR-144 pentanoate (synthetic cannabinoid metabolite)', 'UR-144 pentanoate (synthetic cannabinoid metabolite)', 23),
(637, 'LP178592-4', 'UR-144 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 'UR-144 pentanoate (synthetic cannabinoid metabolite) | Bld-Ser-Plas', 23),
(638, '73957-3', 'UR-144 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 'UR-144 pentanoate (synthetic cannabinoid metabolite) [Presence] in Blood', 23),
(639, 'LP177768-1', 'UR-144 pentanoate (synthetic cannabinoid metabolite) | Urine', 'UR-144 pentanoate (synthetic cannabinoid metabolite) | Urine', 23),
(640, '72472-4', 'UR-144 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 'UR-144 pentanoate (synthetic cannabinoid metabolite) [Presence] in Urine by Confirmatory method', 23),
(641, 'LP178789-6', 'UR-144 (synthetic cannabinoid) | Bld-Ser-Plas', 'UR-144 (synthetic cannabinoid) | Bld-Ser-Plas', 23),
(642, '73945-8', 'UR-144 (synthetic cannabinoid) [Presence] in Blood', 'UR-144 (synthetic cannabinoid) [Presence] in Blood', 23),
(643, 'LP179235-9', 'Cannabinoids synthetic | Bld-Ser-Plas', 'Cannabinoids synthetic | Bld-Ser-Plas', 23),
(644, '73943-3', 'Cannabinoids synthetic [Presence] in Blood', 'Cannabinoids synthetic [Presence] in Blood', 23),
(645, 'LP130325-6', 'Cannabinoids synthetic | Urine', 'Cannabinoids synthetic | Urine', 23),
(646, '67126-3', 'Cannabinoids synthetic [Presence] in Urine by Confirmatory method', 'Cannabinoids synthetic [Presence] in Urine by Confirmatory method', 23),
(647, 'LP157591-1', 'Cannabinoids synthetic | XXX', 'Cannabinoids synthetic | XXX', 23),
(648, '72379-1', 'Cannabinoids synthetic [Presence] in Unspecified specimen by Screen method', 'Cannabinoids synthetic [Presence] in Unspecified specimen by Screen method', 23),
(649, 'LP16059-5', 'Tetrahydrocannabinol', 'Tetrahydrocannabinol', 23),
(650, 'LP14468-0', 'Carboxy tetrahydrocannabinol', 'Carboxy tetrahydrocannabinol', 23),
(651, 'LP44610-1', 'Carboxy Tetrahydrocannabinol | Bld-Ser-Plas', 'Carboxy Tetrahydrocannabinol | Bld-Ser-Plas', 23),
(652, '26995-1', 'Carboxy tetrahydrocannabinol [Mass/volume] in Blood', 'Carboxy tetrahydrocannabinol [Mass/volume] in Blood', 23),
(653, '42492-9', 'Carboxy tetrahydrocannabinol [Presence] in Blood', 'Carboxy tetrahydrocannabinol [Presence] in Blood', 23),
(654, '16150-5', 'Carboxy tetrahydrocannabinol [Mass/volume] in Serum or Plasma', 'Carboxy tetrahydrocannabinol [Mass/volume] in Serum or Plasma', 23),
(655, '47386-8', 'Carboxy tetrahydrocannabinol [Mass/volume] in Serum or Plasma by Confirmatory method', 'Carboxy tetrahydrocannabinol [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(656, '26743-5', 'Carboxy tetrahydrocannabinol [Presence] in Serum or Plasma', 'Carboxy tetrahydrocannabinol [Presence] in Serum or Plasma', 23),
(657, '49746-1', 'Carboxy tetrahydrocannabinol [Presence] in Serum or Plasma by Screen method', 'Carboxy tetrahydrocannabinol [Presence] in Serum or Plasma by Screen method', 23),
(658, 'LP49063-8', 'Carboxy Tetrahydrocannabinol | Gastric fluid', 'Carboxy Tetrahydrocannabinol | Gastric fluid', 23),
(659, '29326-6', 'Carboxy tetrahydrocannabinol [Mass/volume] in Gastric fluid', 'Carboxy tetrahydrocannabinol [Mass/volume] in Gastric fluid', 23),
(660, '61062-6', 'Carboxy tetrahydrocannabinol [Presence] in Gastric fluid', 'Carboxy tetrahydrocannabinol [Presence] in Gastric fluid', 23),
(661, 'LP49616-3', 'Carboxy Tetrahydrocannabinol | Meconium', 'Carboxy Tetrahydrocannabinol | Meconium', 23),
(662, '31136-5', 'Carboxy tetrahydrocannabinol [Mass/mass] in Meconium', 'Carboxy tetrahydrocannabinol [Mass/mass] in Meconium', 23),
(663, '69007-3', 'Carboxy tetrahydrocannabinol [Mass/mass] in Meconium by Confirmatory method', 'Carboxy tetrahydrocannabinol [Mass/mass] in Meconium by Confirmatory method', 23),
(664, '57924-3', 'Carboxy tetrahydrocannabinol [Presence] in Meconium', 'Carboxy tetrahydrocannabinol [Presence] in Meconium', 23),
(665, 'LP158121-6', 'Carboxy tetrahydrocannabinol | Saliva', 'Carboxy tetrahydrocannabinol | Saliva', 23),
(666, '72764-4', 'Carboxy tetrahydrocannabinol [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 'Carboxy tetrahydrocannabinol [Mass/volume] in Saliva (oral fluid) by Confirmatory method', 23),
(667, 'LP48461-5', 'Carboxy Tetrahydrocannabinol | Stool', 'Carboxy Tetrahydrocannabinol | Stool', 23),
(668, '26732-8', 'Carboxy tetrahydrocannabinol [Mass/mass] in Stool', 'Carboxy tetrahydrocannabinol [Mass/mass] in Stool', 23),
(669, 'LP46058-1', 'Carboxy Tetrahydrocannabinol | Urine', 'Carboxy Tetrahydrocannabinol | Urine', 23),
(670, '3/1/3436', 'Carboxy tetrahydrocannabinol [Mass/volume] in Urine', 'Carboxy tetrahydrocannabinol [Mass/volume] in Urine', 23),
(671, '20521-1', 'Carboxy tetrahydrocannabinol [Mass/volume] in Urine by Confirmatory method', 'Carboxy tetrahydrocannabinol [Mass/volume] in Urine by Confirmatory method', 23),
(672, '5/1/3435', 'Carboxy tetrahydrocannabinol [Presence] in Urine', 'Carboxy tetrahydrocannabinol [Presence] in Urine', 23),
(673, '19382-1', 'Carboxy tetrahydrocannabinol [Presence] in Urine by Confirmatory method', 'Carboxy tetrahydrocannabinol [Presence] in Urine by Confirmatory method', 23),
(674, '19381-3', 'Carboxy tetrahydrocannabinol [Presence] in Urine by Screen method', 'Carboxy tetrahydrocannabinol [Presence] in Urine by Screen method', 23),
(675, '19384-7', 'Carboxy tetrahydrocannabinol cutoff [Mass/volume] in Urine for Confirmatory method', 'Carboxy tetrahydrocannabinol cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(676, '19383-9', 'Carboxy tetrahydrocannabinol cutoff [Mass/volume] in Urine for Screen method', 'Carboxy tetrahydrocannabinol cutoff [Mass/volume] in Urine for Screen method', 23),
(677, '19055-3', 'Carboxy tetrahydrocannabinol/Creatinine [Mass Ratio] in Urine', 'Carboxy tetrahydrocannabinol/Creatinine [Mass Ratio] in Urine', 23),
(678, 'LP48694-1', 'Carboxy Tetrahydrocannabinol | Vitreous fluid', 'Carboxy Tetrahydrocannabinol | Vitreous fluid', 23),
(679, '27213-8', 'Carboxy tetrahydrocannabinol [Mass/volume] in Vitreous fluid', 'Carboxy tetrahydrocannabinol [Mass/volume] in Vitreous fluid', 23),
(680, 'LP63561-2', 'Carboxy Tetrahydrocannabinol | XXX', 'Carboxy Tetrahydrocannabinol | XXX', 23),
(681, '48944-3', 'Carboxy tetrahydrocannabinol [Mass/volume] in Unspecified specimen', 'Carboxy tetrahydrocannabinol [Mass/volume] in Unspecified specimen', 23),
(682, '61063-4', 'Carboxy tetrahydrocannabinol [Presence] in Unspecified specimen', 'Carboxy tetrahydrocannabinol [Presence] in Unspecified specimen', 23),
(683, 'LP35627-6', '11-Hydroxy delta-9 tetrahydrocannabinol', '11-Hydroxy delta-9 tetrahydrocannabinol', 23),
(684, 'LP52078-0', '11-Hydroxy delta-9 tetrahydrocannabinol | Bld-Ser-Plas', '11-Hydroxy delta-9 tetrahydrocannabinol | Bld-Ser-Plas', 23),
(685, '70178-9', '11-Hydroxy delta-9 tetrahydrocannabinol [Presence] in Blood', '11-Hydroxy delta-9 tetrahydrocannabinol [Presence] in Blood', 23),
(686, '40864-1', '11-Hydroxy delta-9 tetrahydrocannabinol [Mass/volume] in Serum or Plasma', '11-Hydroxy delta-9 tetrahydrocannabinol [Mass/volume] in Serum or Plasma', 23),
(687, 'LP63556-2', '11-Hydroxy delta-9 tetrahydrocannabinol | XXX', '11-Hydroxy delta-9 tetrahydrocannabinol | XXX', 23),
(688, '48934-4', '11-Hydroxy delta-9 tetrahydrocannabinol [Mass/volume] in Unspecified specimen', '11-Hydroxy delta-9 tetrahydrocannabinol [Mass/volume] in Unspecified specimen', 23),
(689, '48935-1', '11-Hydroxy delta-9 tetrahydrocannabinol [Presence] in Unspecified specimen', '11-Hydroxy delta-9 tetrahydrocannabinol [Presence] in Unspecified specimen', 23),
(690, 'LP52978-1', 'Tetrahydrocannabinol | Bld-Ser-Plas', 'Tetrahydrocannabinol | Bld-Ser-Plas', 23),
(691, '58047-2', 'Tetrahydrocannabinol [Presence] in Blood by Confirmatory method', 'Tetrahydrocannabinol [Presence] in Blood by Confirmatory method', 23),
(692, '7/1/3528', 'Tetrahydrocannabinol [Mass/volume] in Serum or Plasma', 'Tetrahydrocannabinol [Mass/volume] in Serum or Plasma', 23),
(693, '44049-5', 'Tetrahydrocannabinol [Mass/volume] in Serum or Plasma by Confirmatory method', 'Tetrahydrocannabinol [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(694, '51791-2', 'Tetrahydrocannabinol [Presence] in Serum or Plasma by Confirmatory method', 'Tetrahydrocannabinol [Presence] in Serum or Plasma by Confirmatory method', 23),
(695, '73935-9', 'Tetrahydrocannabinol [Mass/volume] in Serum, Plasma or Blood by Confirmatory method', 'Tetrahydrocannabinol [Mass/volume] in Serum, Plasma or Blood by Confirmatory method', 23),
(696, 'LP54803-9', 'Tetrahydrocannabinol | Gastric fluid', 'Tetrahydrocannabinol | Gastric fluid', 23),
(697, '8162-0', 'Tetrahydrocannabinol [Mass/volume] in Gastric fluid', 'Tetrahydrocannabinol [Mass/volume] in Gastric fluid', 23),
(698, '8/1/8163', 'Tetrahydrocannabinol [Presence] in Gastric fluid', 'Tetrahydrocannabinol [Presence] in Gastric fluid', 23),
(699, '6/1/8164', 'Tetrahydrocannabinol [Presence] in Gastric fluid by Confirmatory method', 'Tetrahydrocannabinol [Presence] in Gastric fluid by Confirmatory method', 23),
(700, '3/1/8165', 'Tetrahydrocannabinol [Presence] in Gastric fluid by Screen method', 'Tetrahydrocannabinol [Presence] in Gastric fluid by Screen method', 23),
(701, 'LP54804-7', 'Tetrahydrocannabinol | Meconium', 'Tetrahydrocannabinol | Meconium', 23),
(702, '1/1/8166', 'Tetrahydrocannabinol [Mass/volume] in Meconium', 'Tetrahydrocannabinol [Mass/volume] in Meconium', 23),
(703, '26893-8', 'Tetrahydrocannabinol [Mass/mass] in Meconium', 'Tetrahydrocannabinol [Mass/mass] in Meconium', 23),
(704, '9/1/8167', 'Tetrahydrocannabinol [Presence] in Meconium', 'Tetrahydrocannabinol [Presence] in Meconium', 23),
(705, '7/1/8168', 'Tetrahydrocannabinol [Presence] in Meconium by Confirmatory method', 'Tetrahydrocannabinol [Presence] in Meconium by Confirmatory method', 23),
(706, '5/1/8169', 'Tetrahydrocannabinol [Presence] in Meconium by Screen method', 'Tetrahydrocannabinol [Presence] in Meconium by Screen method', 23),
(707, 'LP41902-5', 'Tetrahydrocannabinol | Stool', 'Tetrahydrocannabinol | Stool', 23),
(708, '26731-0', 'Tetrahydrocannabinol [Mass/mass] in Stool', 'Tetrahydrocannabinol [Mass/mass] in Stool', 23),
(709, '12351-3', 'Tetrahydrocannabinol [Presence] in Stool', 'Tetrahydrocannabinol [Presence] in Stool', 23),
(710, '18432-5', 'Tetrahydrocannabinol [Presence] in Stool by Screen method', 'Tetrahydrocannabinol [Presence] in Stool by Screen method', 23),
(711, 'LP42683-0', 'Tetrahydrocannabinol | Urine', 'Tetrahydrocannabinol | Urine', 23),
(712, '3/1/3530', 'Tetrahydrocannabinol [Mass/volume] in Urine', 'Tetrahydrocannabinol [Mass/volume] in Urine', 23),
(713, '14313-1', 'Tetrahydrocannabinol [Mass/volume] in Urine by Confirmatory method', 'Tetrahydrocannabinol [Mass/volume] in Urine by Confirmatory method', 23),
(714, '4/1/3426', 'Tetrahydrocannabinol [Presence] in Urine', 'Tetrahydrocannabinol [Presence] in Urine', 23),
(715, '19416-7', 'Tetrahydrocannabinol [Presence] in Urine by Confirmatory method', 'Tetrahydrocannabinol [Presence] in Urine by Confirmatory method', 23),
(716, '17872-3', 'Tetrahydrocannabinol [Presence] in Urine by Confirm method >25 ng/mL', 'Tetrahydrocannabinol [Presence] in Urine by Confirm method >25 ng/mL', 23),
(717, '5/1/8174', 'Tetrahydrocannabinol [Presence] in Urine by SAMHSA confirm method', 'Tetrahydrocannabinol [Presence] in Urine by SAMHSA confirm method', 23),
(718, '2/1/8175', 'Tetrahydrocannabinol [Presence] in Urine by SAMHSA screen method', 'Tetrahydrocannabinol [Presence] in Urine by SAMHSA screen method', 23),
(719, '19415-9', 'Tetrahydrocannabinol [Presence] in Urine by Screen method', 'Tetrahydrocannabinol [Presence] in Urine by Screen method', 23),
(720, '21557-4', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >100 ng/mL', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >100 ng/mL', 23),
(721, '21556-6', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >20 ng/mL', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >20 ng/mL', 23),
(722, '14312-3', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >50 ng/mL', 'Tetrahydrocannabinol [Presence] in Urine by Screen method >50 ng/mL', 23),
(723, '19418-3', 'Tetrahydrocannabinol cutoff [Mass/volume] in Urine for Confirmatory method', 'Tetrahydrocannabinol cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(724, '19417-5', 'Tetrahydrocannabinol cutoff [Mass/volume] in Urine for Screen method', 'Tetrahydrocannabinol cutoff [Mass/volume] in Urine for Screen method', 23),
(725, '13478-3', 'Tetrahydrocannabinol/Creatinine [Mass Ratio] in Urine', 'Tetrahydrocannabinol/Creatinine [Mass Ratio] in Urine', 23),
(726, 'LP63097-7', 'Tetrahydrocannabinol | Vitreous fluid', 'Tetrahydrocannabinol | Vitreous fluid', 23),
(727, '27193-2', 'Tetrahydrocannabinol [Mass/volume] in Vitreous fluid', 'Tetrahydrocannabinol [Mass/volume] in Vitreous fluid', 23),
(728, 'LP52872-6', 'Tetrahydrocannabinol | XXX', 'Tetrahydrocannabinol | XXX', 23),
(729, '43834-1', 'Tetrahydrocannabinol [Presence] in Unspecified specimen', 'Tetrahydrocannabinol [Presence] in Unspecified specimen', 23),
(730, 'LP44656-4', 'Cannabinoids | Bld-Ser-Plas', 'Cannabinoids | Bld-Ser-Plas', 23),
(731, '16243-8', 'Cannabinoids [Mass/volume] in Blood by Confirmatory method', 'Cannabinoids [Mass/volume] in Blood by Confirmatory method', 23),
(732, '42630-4', 'Cannabinoids [Presence] in Blood', 'Cannabinoids [Presence] in Blood', 23),
(733, '42491-1', 'Cannabinoids [Presence] in Blood by Screen method', 'Cannabinoids [Presence] in Blood by Screen method', 23),
(734, '3/1/8170', 'Cannabinoids [Mass/volume] in Serum or Plasma', 'Cannabinoids [Mass/volume] in Serum or Plasma', 23),
(735, '16542-3', 'Cannabinoids [Mass/volume] in Serum or Plasma by Confirmatory method', 'Cannabinoids [Mass/volume] in Serum or Plasma by Confirmatory method', 23),
(736, '6/1/3425', 'Cannabinoids [Presence] in Serum or Plasma', 'Cannabinoids [Presence] in Serum or Plasma', 23),
(737, '1/1/8171', 'Cannabinoids [Presence] in Serum or Plasma by Confirmatory method', 'Cannabinoids [Presence] in Serum or Plasma by Confirmatory method', 23),
(738, '9/1/8172', 'Cannabinoids [Presence] in Serum or Plasma by Screen method', 'Cannabinoids [Presence] in Serum or Plasma by Screen method', 23),
(739, '74157-9', 'Cannabinoids [Presence] in Serum, Plasma or Blood by Screen method', 'Cannabinoids [Presence] in Serum, Plasma or Blood by Screen method', 23),
(740, 'LP65459-7', 'Cannabinoids | Dialysis fluid', 'Cannabinoids | Dialysis fluid', 23),
(741, '50338-3', 'Cannabinoids [Mass/volume] in Dialysis fluid', 'Cannabinoids [Mass/volume] in Dialysis fluid', 23),
(742, 'LP50443-8', 'Cannabinoids | Gastric fluid', 'Cannabinoids | Gastric fluid', 23),
(743, '33561-2', 'Cannabinoids [Mass/volume] in Gastric fluid', 'Cannabinoids [Mass/volume] in Gastric fluid', 23),
(744, '59573-6', 'Cannabinoids [Presence] in Gastric fluid', 'Cannabinoids [Presence] in Gastric fluid', 23),
(745, 'LP48468-0', 'Cannabinoids | Hair', 'Cannabinoids | Hair', 23),
(746, '59160-2', 'Cannabinoids [Mass/mass] in Hair', 'Cannabinoids [Mass/mass] in Hair', 23),
(747, '26764-1', 'Cannabinoids [Presence] in Hair', 'Cannabinoids [Presence] in Hair', 23),
(748, '40800-5', 'Cannabinoids [Presence] in Hair by Screen method', 'Cannabinoids [Presence] in Hair by Screen method', 23),
(749, 'LP48601-6', 'Cannabinoids | Meconium', 'Cannabinoids | Meconium', 23),
(750, '27024-9', 'Cannabinoids [Mass/mass] in Meconium', 'Cannabinoids [Mass/mass] in Meconium', 23),
(751, '33282-5', 'Cannabinoids [Mass/mass] in Meconium by Confirmatory method', 'Cannabinoids [Mass/mass] in Meconium by Confirmatory method', 23),
(752, '50406-8', 'Cannabinoids [Presence] in Meconium by Confirmatory method', 'Cannabinoids [Presence] in Meconium by Confirmatory method', 23),
(753, '31080-5', 'Cannabinoids [Presence] in Meconium by Screen method', 'Cannabinoids [Presence] in Meconium by Screen method', 23),
(754, 'LP52054-1', 'Cannabinoids | Saliva', 'Cannabinoids | Saliva', 23),
(755, '40801-3', 'Cannabinoids [Presence] in Saliva (oral fluid) by Screen method', 'Cannabinoids [Presence] in Saliva (oral fluid) by Screen method', 23),
(756, 'LP48512-5', 'Cannabinoids | Stool', 'Cannabinoids | Stool', 23),
(757, '26856-5', 'Cannabinoids [Mass/mass] in Stool', 'Cannabinoids [Mass/mass] in Stool', 23),
(758, 'LP44794-3', 'Cannabinoids | Unknown substance', 'Cannabinoids | Unknown substance', 23),
(759, '8176-0', 'Cannabinoids [Mass/volume] in Unknown substance', 'Cannabinoids [Mass/volume] in Unknown substance', 23),
(760, '16543-1', 'Cannabinoids [Mass/volume] in Unknown substance by Confirmatory method', 'Cannabinoids [Mass/volume] in Unknown substance by Confirmatory method', 23),
(761, '8/1/8177', 'Cannabinoids [Presence] in Unknown substance', 'Cannabinoids [Presence] in Unknown substance', 23),
(762, '6/1/8178', 'Cannabinoids [Presence] in Unknown substance by Confirmatory method', 'Cannabinoids [Presence] in Unknown substance by Confirmatory method', 23),
(763, '4/1/8179', 'Cannabinoids [Presence] in Unknown substance by Screen method', 'Cannabinoids [Presence] in Unknown substance by Screen method', 23),
(764, 'LP45738-9', 'Cannabinoids | Urine', 'Cannabinoids | Urine', 23),
(765, '42860-7', 'Cannabinoids [Mass/volume] in Urine', 'Cannabinoids [Mass/volume] in Urine', 23),
(766, '20413-1', 'Cannabinoids [Mass/volume] in Urine by Confirmatory method', 'Cannabinoids [Mass/volume] in Urine by Confirmatory method', 23),
(767, '70143-3', 'Cannabinoids [Mass/volume] in Urine by Screen method', 'Cannabinoids [Mass/volume] in Urine by Screen method', 23),
(768, '52954-5', 'Cannabinoids [Moles/volume] in Urine', 'Cannabinoids [Moles/volume] in Urine', 23),
(769, '2/1/3427', 'Cannabinoids [Presence] in Urine', 'Cannabinoids [Presence] in Urine', 23),
(770, '19289-8', 'Cannabinoids [Presence] in Urine by Confirmatory method', 'Cannabinoids [Presence] in Urine by Confirmatory method', 23),
(771, '18282-4', 'Cannabinoids [Presence] in Urine by Screen method', 'Cannabinoids [Presence] in Urine by Screen method', 23),
(772, '70144-1', 'Cannabinoids [Presence] in Urine by Screen method >20 ng/mL', 'Cannabinoids [Presence] in Urine by Screen method >20 ng/mL', 23),
(773, '70145-8', 'Cannabinoids [Presence] in Urine by Screen method >50 ng/mL', 'Cannabinoids [Presence] in Urine by Screen method >50 ng/mL', 23),
(774, '19294-8', 'Cannabinoids confirm method [Identifier] in Urine', 'Cannabinoids confirm method [Identifier] in Urine', 23),
(775, '19073-6', 'Cannabinoids cutoff [Mass/volume] in Urine', 'Cannabinoids cutoff [Mass/volume] in Urine', 23),
(776, '19292-2', 'Cannabinoids cutoff [Mass/volume] in Urine for Confirmatory method', 'Cannabinoids cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(777, '19291-4', 'Cannabinoids cutoff [Mass/volume] in Urine for Screen method', 'Cannabinoids cutoff [Mass/volume] in Urine for Screen method', 23),
(778, '19293-0', 'Cannabinoids screen method [Identifier] in Urine', 'Cannabinoids screen method [Identifier] in Urine', 23),
(779, '19288-0', 'Cannabinoids tested for in Urine by Screen method Narrative', 'Cannabinoids tested for in Urine by Screen method Narrative', 23),
(780, '19287-2', 'Cannabinoids tested for in Urine by Screen method Nominal', 'Cannabinoids tested for in Urine by Screen method Nominal', 23),
(781, '26747-6', 'Cannabinoids/Creatinine [Mass Ratio] in Urine', 'Cannabinoids/Creatinine [Mass Ratio] in Urine', 23),
(782, 'LP48637-0', 'Cannabinoids | Vitreous fluid', 'Cannabinoids | Vitreous fluid', 23),
(783, '27086-8', 'Cannabinoids [Presence] in Vitreous fluid', 'Cannabinoids [Presence] in Vitreous fluid', 23),
(784, 'LP63560-4', 'Cannabinoids | XXX', 'Cannabinoids | XXX', 23),
(785, '48942-7', 'Cannabinoids [Mass/volume] in Unspecified specimen', 'Cannabinoids [Mass/volume] in Unspecified specimen', 23),
(786, '48943-5', 'Cannabinoids [Presence] in Unspecified specimen by Confirmatory method', 'Cannabinoids [Presence] in Unspecified specimen by Confirmatory method', 23),
(2257, 'LP18049-4', 'Hallucinogens', 'Hallucinogens', 23), (2258, 'LP16809-3', 'Bufotenine', 'Bufotenine', 23),
(2259, 'LP41988-4', 'Bufotenine | Bld-Ser-Plas', 'Bufotenine | Bld-Ser-Plas', 23),
(2260, '12433-9', 'Bufotenine [Mass/volume] in Serum or Plasma', 'Bufotenine [Mass/volume] in Serum or Plasma', 23),
(2261, 'LP43534-4', 'Bufotenine | Urine', 'Bufotenine | Urine', 23),
(2262, '5608-5', 'Bufotenine [Mass/volume] in Urine', 'Bufotenine [Mass/volume] in Urine', 23),
(2263, 'LP16115-5', 'Dimethyltryptamine', 'Dimethyltryptamine', 23),
(2264, 'LP51161-5', 'Dimethyltryptamine | Bld-Ser-Plas', 'Dimethyltryptamine | Bld-Ser-Plas', 23),
(2265, '3567-5', 'Dimethyltryptamine [Mass/volume] in Serum or Plasma', 'Dimethyltryptamine [Mass/volume] in Serum or Plasma', 23),
(2266, 'LP41836-5', 'Dimethyltryptamine | Urine', 'Dimethyltryptamine | Urine', 23),
(2267, '3568-3', 'Dimethyltryptamine [Mass/volume] in Urine', 'Dimethyltryptamine [Mass/volume] in Urine', 23),
(2268, '12292-9', 'Dimethyltryptamine [Presence] in Urine', 'Dimethyltryptamine [Presence] in Urine', 23),
(2269, 'LP16179-1', 'Lysergate diethylamide', 'Lysergate diethylamide', 23),
(2270, 'LP53326-2', '2-oxo-3-hydroxy-lysergate diethylamide | Urine', '2-oxo-3-hydroxy-lysergate diethylamide | Urine', 23),
(2271, '45185-6', '2-Oxo-3-Hydroxy-Lysergate diethylamide [Mass/volume] in Urine', '2-Oxo-3-Hydroxy-Lysergate diethylamide [Mass/volume] in Urine', 23),
(2272, 'LP51310-8', 'Lysergate Diethylamide | Bld-Ser-Plas', 'Lysergate Diethylamide | Bld-Ser-Plas', 23),
(2273, '3731-7', 'Lysergate diethylamide [Mass/volume] in Serum or Plasma', 'Lysergate diethylamide [Mass/volume] in Serum or Plasma', 23),
(2274, '5678-8', 'Lysergate diethylamide [Mass/volume] in Serum or Plasma by Radioimmunoassay (RIA)', 'Lysergate diethylamide [Mass/volume] in Serum or Plasma by Radioimmunoassay (RIA)', 23),
(2275, '3730-9', 'Lysergate diethylamide [Presence] in Serum or Plasma', 'Lysergate diethylamide [Presence] in Serum or Plasma', 23),
(2276, 'LP102283-1', 'Lysergate diethylamide | Gastric fluid', 'Lysergate diethylamide | Gastric fluid', 23),
(2277, '61094-9', 'Lysergate diethylamide [Presence] in Gastric fluid', 'Lysergate diethylamide [Presence] in Gastric fluid', 23),
(2278, 'LP178302-8', 'Lysergate diethylamide | Hair', 'Lysergate diethylamide | Hair', 23),
(2279, '73726-2', 'Lysergate diethylamide [Presence] in Hair', 'Lysergate diethylamide [Presence] in Hair', 23),
(2280, 'LP179322-5', 'Lysergate diethylamide | Meconium', 'Lysergate diethylamide | Meconium', 23),
(2281, '73730-4', 'Lysergate diethylamide [Presence] in Meconium', 'Lysergate diethylamide [Presence] in Meconium', 23),
(2282, 'LP44641-6', 'Lysergate Diethylamide | Urine', 'Lysergate Diethylamide | Urine', 23),
(2283, '5679-6', 'Lysergate diethylamide [Mass/volume] in Urine', 'Lysergate diethylamide [Mass/volume] in Urine', 23),
(2284, '20542-7', 'Lysergate diethylamide [Mass/volume] in Urine by Confirmatory method', 'Lysergate diethylamide [Mass/volume] in Urine by Confirmatory method', 23),
(2285, '33350-0', 'Lysergate diethylamide [Mass/volume] in Urine by Screen method', 'Lysergate diethylamide [Mass/volume] in Urine by Screen method', 23),
(2286, '3732-5', 'Lysergate diethylamide [Presence] in Urine', 'Lysergate diethylamide [Presence] in Urine', 23),
(2287, '16214-9', 'Lysergate diethylamide [Presence] in Urine by Confirmatory method', 'Lysergate diethylamide [Presence] in Urine by Confirmatory method', 23),
(2288, '19528-9', 'Lysergate diethylamide [Presence] in Urine by Screen method', 'Lysergate diethylamide [Presence] in Urine by Screen method', 23),
(2289, '19531-3', 'Lysergate diethylamide cutoff [Mass/volume] in Urine for Confirmatory method', 'Lysergate diethylamide cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(2290, '19530-5', 'Lysergate diethylamide cutoff [Mass/volume] in Urine for Screen method', 'Lysergate diethylamide cutoff [Mass/volume] in Urine for Screen method', 23),
(2291, 'LP102261-7', 'Lysergate diethylamide | XXX', 'Lysergate diethylamide | XXX', 23),
(2292, '61065-9', 'Lysergate diethylamide [Presence] in Unspecified specimen', 'Lysergate diethylamide [Presence] in Unspecified specimen', 23),
(2293, 'LP17987-6', 'Mescaline', 'Mescaline', 23),
(2294, 'LP44608-5', 'Mescaline | Bld-Ser-Plas', 'Mescaline | Bld-Ser-Plas', 23),
(2295, '16145-5', 'Mescaline [Mass/volume] in Serum or Plasma', 'Mescaline [Mass/volume] in Serum or Plasma', 23),
(2296, 'LP41841-5', 'Mescaline | Urine', 'Mescaline | Urine', 23),
(2297, '9726-1', 'Mescaline [Mass/volume] in Urine', 'Mescaline [Mass/volume] in Urine', 23),
(2298, '20543-5', 'Mescaline [Mass/volume] in Urine by Confirmatory method', 'Mescaline [Mass/volume] in Urine by Confirmatory method', 23),
(2299, '12296-0', 'Mescaline [Presence] in Urine', 'Mescaline [Presence] in Urine', 23),
(2300, '19543-8', 'Mescaline [Presence] in Urine by Confirmatory method', 'Mescaline [Presence] in Urine by Confirmatory method', 23),
(2301, '19542-0', 'Mescaline [Presence] in Urine by Screen method', 'Mescaline [Presence] in Urine by Screen method', 23),
(2302, '19545-3', 'Mescaline cutoff [Mass/volume] in Urine for Confirmatory method', 'Mescaline cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(2303, '19544-6', 'Mescaline cutoff [Mass/volume] in Urine for Screen method', 'Mescaline cutoff [Mass/volume] in Urine for Screen method', 23),
(2304, 'LP173524-2', 'NBOMe', 'NBOMe', 23), (2305, 'LP180251-3', '25H-NBOMe | Urine', '25H-NBOMe | Urine', 23),
(2306, '73998-7', '25H-NBOMe [Presence] in Urine by Confirmatory method', '25H-NBOMe [Presence] in Urine by Confirmatory method', 23),
(2307, 'LP179484-3', '25I-NBOMe | Urine', '25I-NBOMe | Urine', 23),
(2308, '74000-1', '25I-NBOMe [Presence] in Urine by Confirmatory method', '25I-NBOMe [Presence] in Urine by Confirmatory method', 23),
(2309, 'LP179577-4', '2C-C-NBOMe | Urine', '2C-C-NBOMe | Urine', 23),
(2310, '73999-5', '2C-C-NBOMe [Presence] in Urine by Confirmatory method', '2C-C-NBOMe [Presence] in Urine by Confirmatory method', 23),
(2311, 'LP180335-4', 'NBOMe | Urine', 'NBOMe | Urine', 23),
(2312, '74001-9', 'NBOMe [Presence] in Urine by Screen method', 'NBOMe [Presence] in Urine by Screen method', 23),
(2313, 'LP18864-6', 'Psilocin', 'Psilocin', 23),
(2314, 'LP44609-3', 'Psilocin | Bld-Ser-Plas', 'Psilocin | Bld-Ser-Plas', 23),
(2315, '16146-3', 'Psilocin [Mass/volume] in Serum or Plasma', 'Psilocin [Mass/volume] in Serum or Plasma', 23),
(2316, 'LP45825-4', 'Psilocin | Urine', 'Psilocin | Urine', 23),
(2317, '18415-0', 'Psilocin [Mass/volume] in Urine', 'Psilocin [Mass/volume] in Urine', 23),
(2318, '20558-3', 'Psilocin [Mass/volume] in Urine by Confirmatory method', 'Psilocin [Mass/volume] in Urine by Confirmatory method', 23),
(2319, '18414-3', 'Psilocin [Presence] in Urine', 'Psilocin [Presence] in Urine', 23),
(2320, '19683-2', 'Psilocin [Presence] in Urine by Confirmatory method', 'Psilocin [Presence] in Urine by Confirmatory method', 23),
(2321, '19682-4', 'Psilocin [Presence] in Urine by Screen method', 'Psilocin [Presence] in Urine by Screen method', 23),
(2322, '19685-7', 'Psilocin cutoff [Mass/volume] in Urine for Confirmatory method', 'Psilocin cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(2323, '19684-0', 'Psilocin cutoff [Mass/volume] in Urine for Screen method', 'Psilocin cutoff [Mass/volume] in Urine for Screen method', 23),
(2324, 'LP17245-9', 'Psilocybin', 'Psilocybin', 23),
(2325, 'LP45438-6', 'Psilocybin | Bld-Ser-Plas', 'Psilocybin | Bld-Ser-Plas', 23),
(2326, '17505-9', 'Psilocybin/Psilocin [Mass Ratio] in Serum or Plasma', 'Psilocybin/Psilocin [Mass Ratio] in Serum or Plasma', 23),
(2327, 'LP45437-8', 'Psilocybin | Urine', 'Psilocybin | Urine', 23),
(2328, '6930-2', 'Psilocybin [Mass/volume] in Urine', 'Psilocybin [Mass/volume] in Urine', 23),
(2329, '19688-1', 'Psilocybin [Mass/volume] in Urine by Confirmatory method', 'Psilocybin [Mass/volume] in Urine by Confirmatory method', 23),
(2330, '17504-2', 'Psilocybin [Presence] in Urine', 'Psilocybin [Presence] in Urine', 23),
(2331, '19687-3', 'Psilocybin [Presence] in Urine by Confirmatory method', 'Psilocybin [Presence] in Urine by Confirmatory method', 23),
(2332, '19686-5', 'Psilocybin [Presence] in Urine by Screen method', 'Psilocybin [Presence] in Urine by Screen method', 23),
(2333, '19691-5', 'Psilocybin cutoff [Mass/volume] in Urine for Confirmatory method', 'Psilocybin cutoff [Mass/volume] in Urine for Confirmatory method', 23),
(2334, '19690-7', 'Psilocybin cutoff [Mass/volume] in Urine for Screen method', 'Psilocybin cutoff [Mass/volume] in Urine for Screen method', 23),
(2335, 'LP100049-8', 'Salvinorin A', 'Salvinorin A', 23),
(2336, 'LP100136-3', 'Salvinorin A | Bld-Ser-Plas', 'Salvinorin A | Bld-Ser-Plas', 23),
(2337, '59324-4', 'Salvinorin A [Mass/volume] in Blood', 'Salvinorin A [Mass/volume] in Blood', 23),
(2338, '59326-9', 'Salvinorin A [Mass/volume] in Serum or Plasma', 'Salvinorin A [Mass/volume] in Serum or Plasma', 23),
(2339, 'LP100138-9', 'Salvinorin A | Urine', 'Salvinorin A | Urine', 23),
(2340, '59328-5', 'Salvinorin A [Mass/volume] in Urine', 'Salvinorin A [Mass/volume] in Urine', 23),
(2341, 'LP100050-6', 'Salvinorin B', 'Salvinorin B', 23),
(2342, 'LP100137-1', 'Salvinorin B | Bld-Ser-Plas', 'Salvinorin B | Bld-Ser-Plas', 23),
(2343, '59325-1', 'Salvinorin B [Mass/volume] in Blood', 'Salvinorin B [Mass/volume] in Blood', 23),
(2344, '59327-7', 'Salvinorin B [Mass/volume] in Serum or Plasma', 'Salvinorin B [Mass/volume] in Serum or Plasma', 23),
(2345, 'LP100139-7', 'Salvinorin B | Urine', 'Salvinorin B | Urine', 23),
(2346, '59329-3', 'Salvinorin B [Mass/volume] in Urine', 'Salvinorin B [Mass/volume] in Urine', 23),
(2347, 'LP45559-9', 'Tryptamine | Bld-Ser-Plas', 'Tryptamine | Bld-Ser-Plas', 23),
(2348, '17751-9', 'Tryptamine [Mass/volume] in Serum or Plasma', 'Tryptamine [Mass/volume] in Serum or Plasma', 23),
(2349, 'LP41840-7', 'Hallucinogens | Urine', 'Hallucinogens | Urine', 23),
(2350, '12295-2', 'Hallucinogens [Identifier] in Urine', 'Hallucinogens [Identifier] in Urine', 23),
(2358, '0575F', 'HIV Rna Control Plan Of Care, Documented (HIV)', 'HIV Rna Control Plan Of Care, Documented (HIV)', 25),
(2359, '3292F', 'HIV Testing Ordered Or Documented And Reviewed During The First Or Second Prenatal Visit (Pre-Cr)', 'HIV Testing Ordered Or Documented And Reviewed During The First Or Second Prenatal Visit (Pre-Cr)', 25),
(2360, '3490F', 'History Of AIDS-Defining Condition (HIV)', 'History Of AIDS-Defining Condition (HIV)', 25),
(2361, '3491F', 'HIV Indeterminate (Infants Of Undetermined HIV Status Born Of HIV-Infected Mothers) (HIV)', 'HIV Indeterminate (Infants Of Undetermined HIV Status Born Of HIV-Infected Mothers) (HIV)', 25),
(2362, '3492F', 'History Of Nadir Cd4+ Cell Count < 350 Cells/Mm3 (HIV)', 'History Of Nadir Cd4+ Cell Count < 350 Cells/Mm3 (HIV)', 25),
(2363, '3493F', 'No History Of Nadir Cd4+ Cell Count < 350 Cells/Mm3 And No History Of AIDS-Defining Condition (HIV)', 'No History Of Nadir Cd4+ Cell Count < 350 Cells/Mm3 And No History Of AIDS-Defining Condition (HIV)', 25),
(2364, '3494F', 'Cd4+ Cell Count < 200 Cells/Mm3 (HIV)', 'Cd4+ Cell Count < 200 Cells/Mm3 (HIV)', 25),
(2365, '3495F', 'Cd4+ Cell Count 200 - 499 Cells/Mm3 (HIV)', 'Cd4+ Cell Count 200 - 499 Cells/Mm3 (HIV)', 25),
(2366, '3496F', 'Cd4+ Cell Count >= 500 Cells/Mm3 (HIV)', 'Cd4+ Cell Count >= 500 Cells/Mm3 (HIV)', 25),
(2367, '3497F', 'Cd4+ Cell Percentage <15% (HIV)', 'Cd4+ Cell Percentage <15% (HIV)', 25),
(2368, '3498F', 'Cd4+ Cell Percentage >= 15% (HIV)', 'Cd4+ Cell Percentage >= 15% (HIV)', 25),
(2369, '3500F', 'Cd4+ Cell Count Or Cd4+ Cell Percentage Documented As Performed (HIV)', 'Cd4+ Cell Count Or Cd4+ Cell Percentage Documented As Performed (HIV)', 25),
(2370, '3502F', 'HIV Rna Viral Load Below Limits Of Quantification (HIV)', 'HIV Rna Viral Load Below Limits Of Quantification (HIV)', 25),
(2371, '3503F', 'HIV Rna Viral Load Not Below Limits Of Quantification (HIV)', 'HIV Rna Viral Load Not Below Limits Of Quantification (HIV)', 25),
(2372, '3510F', 'Documentation That Tuberculosis (Tb) Screening Test Performed And Results Interpreted (HIV) (Ibd)', 'Documentation That Tuberculosis (Tb) Screening Test Performed And Results Interpreted (HIV) (Ibd)', 25),
(2373, '3511F', 'Chlamydia And Gonorrhea Screenings Documented As Performed (HIV)', 'Chlamydia And Gonorrhea Screenings Documented As Performed (HIV)', 25),
(2374, '3512F', 'Syphilis Screening Documented As Performed (HIV)', 'Syphilis Screening Documented As Performed (HIV)', 25),
(2375, '3513F', 'Hepatitis B Screening Documented As Performed (HIV)', 'Hepatitis B Screening Documented As Performed (HIV)', 25),
(2376, '3514F', 'Hepatitis C Screening Documented As Performed (HIV)', 'Hepatitis C Screening Documented As Performed (HIV)', 25),
(2377, '3515F', 'Patient Has Documented Immunity To Hepatitis C (HIV)', 'Patient Has Documented Immunity To Hepatitis C (HIV)', 25),
(2378, '4149F', 'Hepatitis B Vaccine Injection Administered Or Previously Received (Hep-C, HIV) (Ibd)', 'Hepatitis B Vaccine Injection Administered Or Previously Received (Hep-C, HIV) (Ibd)', 25),
(2379, '4270F', 'Patient Receiving Potent Antiretroviral Therapy For 6 Months Or Longer (HIV)', 'Patient Receiving Potent Antiretroviral Therapy For 6 Months Or Longer (HIV)', 25),
(2380, '4271F', 'Patient Receiving Potent Antiretroviral Therapy For Less Than 6 Months Or Not Receiving Potent Antiretroviral Therapy (HIV)', 'Patient Receiving Potent Antiretroviral Therapy For Less Than 6 Months Or Not Receiving Potent Antiretroviral Therapy (HIV)', 25),
(2381, '4274F', 'Influenza Immunization Administered Or Previously Received (HIV) (P-Esrd)', 'Influenza Immunization Administered Or Previously Received (HIV) (P-Esrd)', 25),
(2382, '4276F', 'Potent Antiretroviral Therapy Prescribed (HIV)', 'Potent Antiretroviral Therapy Prescribed (HIV)', 25),
(2383, '4279F', 'Pneumocystis Jiroveci Pneumonia Prophylaxis Prescribed (HIV)', 'Pneumocystis Jiroveci Pneumonia Prophylaxis Prescribed (HIV)', 25),
(2384, '4280F', 'Pneumocystis Jiroveci Pneumonia Prophylaxis Prescribed Within 3 Months Of Low Cd4+ Cell Count Or Percentage (HIV)', 'Pneumocystis Jiroveci Pneumonia Prophylaxis Prescribed Within 3 Months Of Low Cd4+ Cell Count Or Percentage (HIV)', 25),
(2385, '4290F', 'Patient Screened For Injection Drug Use (HIV)', 'Patient Screened For Injection Drug Use (HIV)', 25),
(2386, '4293F', 'Patient Screened For High-Risk Sexual Behavior (HIV)', 'Patient Screened For High-Risk Sexual Behavior (HIV)', 25),
(2387, '86689', 'Antibody; Htlv Or HIV Antibody, Confirmatory Test (Eg, Western Blot)', 'Antibody; Htlv Or HIV Antibody, Confirmatory Test (Eg, Western Blot)', 25),
(2388, '86701', 'Antibody; HIV-1', 'Antibody; HIV-1', 25), (2389, '86702', 'Antibody; HIV-2', 'Antibody; HIV-2', 25),
(2390, '86703', 'Antibody; HIV-1 And HIV-2, Single Result', 'Antibody; HIV-1 And HIV-2, Single Result', 25),
(2391, '87389', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-1 Antigen(S), With HIV-1 And HIV-2 Antibodies, Single Result', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-1 Antigen(S), With HIV-1 And HIV-2 Antibodies, Single Result', 25),
(2392, '87390', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-1', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-1', 25),
(2393, '87391', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-2', 'Infectious Agent Antigen Detection By Enzyme Immunoassay Technique, Qualitative Or Semiquantitative, Multiple-Step Method; HIV-2', 25),
(2394, '87534', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Direct Probe Technique', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Direct Probe Technique', 25),
(2395, '87535', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcription And Amplified Probe Technique', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcription And Amplified Probe Technique', 25),
(2396, '87536', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcription And Quantification', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcription And Quantification', 25),
(2397, '87537', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Direct Probe Technique', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Direct Probe Technique', 25),
(2398, '87538', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Reverse Transcription And Amplified Probe Technique', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Reverse Transcription And Amplified Probe Technique', 25),
(2399, '87539', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Reverse Transcription And Quantification', 'Infectious Agent Detection By Nucleic Acid (Dna Or Rna); HIV-2, Reverse Transcription And Quantification', 25),
(2400, '87900', 'Infectious Agent Drug Susceptibility Phenotype Prediction Using Regularly Updated Genotypic Bioinformatics', 'Infectious Agent Drug Susceptibility Phenotype Prediction Using Regularly Updated Genotypic Bioinformatics', 25),
(2401, '87901', 'Infectious Agent Genotype Analysis By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcriptase And Protease Regions', 'Infectious Agent Genotype Analysis By Nucleic Acid (Dna Or Rna); HIV-1, Reverse Transcriptase And Protease Regions', 25),
(2402, '87903', 'Infectious Agent Phenotype Analysis By Nucleic Acid (Dna Or Rna) With Drug Resistance Tissue Culture Analysis, HIV 1; First Through 10 Drugs Tested', 'Infectious Agent Phenotype Analysis By Nucleic Acid (Dna Or Rna) With Drug Resistance Tissue Culture Analysis, HIV 1; First Through 10 Drugs Tested', 25),
(2403, '87904', 'Infectious Agent Phenotype Analysis By Nucleic Acid (Dna Or Rna) With Drug Resistance Tissue Culture Analysis, HIV 1; Each Additional Drug Tested (List Separately In Addition To Code For Primary Procedure)', 'Infectious Agent Phenotype Analysis By Nucleic Acid (Dna Or Rna) With Drug Resistance Tissue Culture Analysis, HIV 1; Each Additional Drug Tested (List Separately In Addition To Code For Primary Procedure)', 25),
(2404, '87906', 'Infectious Agent Genotype Analysis By Nucleic Acid (Dna Or Rna); HIV-1, Other Region (Eg, Integrase, Fusion)', 'Infectious Agent Genotype Analysis By Nucleic Acid (Dna Or Rna); HIV-1, Other Region (Eg, Integrase, Fusion)', 25),
(2405, 'G0432', 'Infectious Agent Antibody Detection By Enzyme Immunoassay (Eia) Technique, HIV-1 And/Or HIV-2, Screening', 'Infectious Agent Antibody Detection By Enzyme Immunoassay (Eia) Technique, HIV-1 And/Or HIV-2, Screening', 24),
(2406, 'G0433', 'Infectious Agent Antibody Detection By Enzyme-Linked Immunosorbent Assay (Elisa) Technique, HIV-1 And/Or HIV-2, Screening', 'Infectious Agent Antibody Detection By Enzyme-Linked Immunosorbent Assay (Elisa) Technique, HIV-1 And/Or HIV-2, Screening', 24),
(2407, 'G0435', 'Infectious Agent Antigen Detection By Rapid Antibody Test Of Oral Mucosa Transudate, HIV-1 Or HIV-2, Screening', 'Infectious Agent Antigen Detection By Rapid Antibody Test Of Oral Mucosa Transudate, HIV-1 Or HIV-2, Screening', 24),
(2408, 'G8491', 'I intend to report the hiv/aids measures group', 'I intend to report the hiv/aids measures group', 24),
(2409, 'G8500', 'All quality actions for the applicable measures in the hiv/aids measures group have been performed for this patient', 'All quality actions for the applicable measures in the hiv/aids measures group have been performed for this patient', 24),
(2410, 'S3645', 'Hiv-1 antibody testing of oral mucosal transudate', 'Hiv-1 antibody testing of oral mucosal transudate', 24),
(2411, 'LP36650-7', 'HIV 1 and 2', 'HIV 1 and 2', 23),
(2412, 'LP132439-3', 'HIV 1 and 2 Ab | Bld-Ser-Plas', 'HIV 1 and 2 Ab | Bld-Ser-Plas', 23),
(2413, '42768-2', 'HIV 1 and 2 Ab [interpretation] in Serum Narrative', 'HIV 1 and 2 Ab [interpretation] in Serum Narrative', 23),
(2414, '69668-2', 'HIV 1 and 2 Ab [Identifier] in Serum or Plasma by Rapid immunoassay', 'HIV 1 and 2 Ab [Identifier] in Serum or Plasma by Rapid immunoassay', 23),
(2415, 'LP132221-5', 'HIV 1 and 2 | Bld-Ser-Plas', 'HIV 1 and 2 | Bld-Ser-Plas', 23),
(2416, '43185-8', 'HIV 1 and 2 Ab band pattern [interpretation] in Serum by Immunoblot (IB)', 'HIV 1 and 2 Ab band pattern [interpretation] in Serum by Immunoblot (IB)', 23),
(2417, 'LP16715-2', 'HIV 1+2', 'HIV 1+2', 23), (2418, 'LP38459-1', 'HIV 1+2 Ab', 'HIV 1+2 Ab', 23),
(2419, 'LP96479-8', 'HIV 1+2 Ab+HIV1 p24 Ag | Bld-Ser-Plas', 'HIV 1+2 Ab+HIV1 p24 Ag | Bld-Ser-Plas', 23),
(2420, '56888-1', 'HIV 1+2 Ab+HIV1 p24 Ag [Presence] in Serum by Immunoassay', 'HIV 1+2 Ab+HIV1 p24 Ag [Presence] in Serum by Immunoassay', 23),
(2421, '58900-2', 'HIV 1+2 Ab+HIV1 p24 Ag [Units/volume] in Serum by Immunoassay', 'HIV 1+2 Ab+HIV1 p24 Ag [Units/volume] in Serum by Immunoassay', 23),
(2422, 'LP62411-1', 'HIV 1+O+2 Ab', 'HIV 1+O+2 Ab', 23), (2423, 'LP14307-0', 'HIV 1', 'HIV 1', 23),
(2424, 'LP16716-0', 'HIV 2', 'HIV 2', 23), (2425, 'LP38465-8', 'HIV 2 DNA', 'HIV 2 DNA', 23),
(2426, 'LP48209-8', 'HIV 2 DNA | Bld-Ser-Plas', 'HIV 2 DNA | Bld-Ser-Plas', 23),
(2427, '25841-8', 'HIV 2 DNA [Presence] in Blood by Probe and target amplification method', 'HIV 2 DNA [Presence] in Blood by Probe and target amplification method', 23),
(2428, 'LP48210-6', 'HIV 2 DNA | XXX', 'HIV 2 DNA | XXX', 23),
(2429, '25842-6', 'HIV 2 DNA [Presence] in Unspecified specimen by Probe and target amplification method', 'HIV 2 DNA [Presence] in Unspecified specimen by Probe and target amplification method', 23),
(2430, 'LP50859-5', 'HIV 2 proviral DNA | Bld-Ser-Plas', 'HIV 2 proviral DNA | Bld-Ser-Plas', 23),
(2431, '34699-9', 'HIV 2 proviral DNA [Presence] in Serum or Plasma by Probe and target amplification method', 'HIV 2 proviral DNA [Presence] in Serum or Plasma by Probe and target amplification method', 23),
(2432, 'LP136082-7', 'HIV 2 RNA | Bld-Ser-Plas', 'HIV 2 RNA | Bld-Ser-Plas', 23),
(2433, '69353-1', 'HIV 2 RNA [Presence] in Serum or Plasma by Probe and target amplification method', 'HIV 2 RNA [Presence] in Serum or Plasma by Probe and target amplification method', 23),
(2434, '69354-9', 'HIV 2 RNA [Units/volume] (viral load) in Serum or Plasma by Probe and target amplification method', 'HIV 2 RNA [Units/volume] (viral load) in Serum or Plasma by Probe and target amplification method', 23),
(2435, 'LP38463-3', 'HIV 2 Ab', 'HIV 2 Ab', 23),