-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_structure.txt
executable file
·1424 lines (1423 loc) · 84.6 KB
/
project_structure.txt
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
.
├── app
│ ├── Console
│ │ ├── Commands
│ │ │ ├── ClearLog.php
│ │ │ ├── FluxActivate.php
│ │ │ └── TestMailCommand.php
│ │ └── Kernel.php
│ ├── Events
│ │ ├── ImagesSpecimenCreated.php
│ │ └── SpecimenCreated.php
│ ├── Http
│ │ ├── Controllers
│ │ │ ├── Admin
│ │ │ │ ├── AdminCharacterController.php
│ │ │ │ ├── AdminDataSourceController.php
│ │ │ │ ├── AdminExportDatabaseController.php
│ │ │ │ ├── AdminLookUpController.php
│ │ │ │ └── AdminSpecimenController.php
│ │ │ ├── Auth
│ │ │ │ ├── AuthenticatedSessionController.php
│ │ │ │ ├── ConfirmablePasswordController.php
│ │ │ │ ├── EmailVerificationNotificationController.php
│ │ │ │ ├── EmailVerificationPromptController.php
│ │ │ │ ├── NewPasswordController.php
│ │ │ │ ├── PasswordController.php
│ │ │ │ ├── PasswordResetLinkController.php
│ │ │ │ ├── RegisteredUserController.php
│ │ │ │ └── VerifyEmailController.php
│ │ │ ├── BookController.php
│ │ │ ├── CharacterController.php
│ │ │ ├── CharacterSpecimenController.php
│ │ │ ├── ContactController.php
│ │ │ ├── Controller.php
│ │ │ ├── DataImageSourceController.php
│ │ │ ├── DataSourceController.php
│ │ │ ├── DataSourceDataTypeController.php
│ │ │ ├── DisplayOptionController.php
│ │ │ ├── DnaSequenceController.php
│ │ │ ├── ImageSpecimenController.php
│ │ │ ├── ImageSpecimenThumbnailController.php
│ │ │ ├── Lookup
│ │ │ │ ├── AbundanceController.php
│ │ │ │ ├── AnnulusPositionController.php
│ │ │ │ ├── BulbTypeController.php
│ │ │ │ ├── CapContextFleshController.php
│ │ │ │ ├── CapMarginShapeController.php
│ │ │ │ ├── CapMarginTypeController.php
│ │ │ │ ├── CapShapeController.php
│ │ │ │ ├── CapShapeTopViewController.php
│ │ │ │ ├── CapSurfaceDrynessController.php
│ │ │ │ ├── CapSurfaceTextureController.php
│ │ │ │ ├── ChemReactionController.php
│ │ │ │ ├── ColorController.php
│ │ │ │ ├── CountryController.php
│ │ │ │ ├── EpithetController.php
│ │ │ │ ├── FungusTypeController.php
│ │ │ │ ├── GenusController.php
│ │ │ │ ├── GillAttachmentController.php
│ │ │ │ ├── GillBreadthController.php
│ │ │ │ ├── GillConFleshLatexAbunController.php
│ │ │ │ ├── GillEdgeController.php
│ │ │ │ ├── GillOtherController.php
│ │ │ │ ├── GillSpacingController.php
│ │ │ │ ├── GillThicknessController.php
│ │ │ │ ├── HabitatController.php
│ │ │ │ ├── HabitController.php
│ │ │ │ ├── LensController.php
│ │ │ │ ├── OdorController.php
│ │ │ │ ├── PartController.php
│ │ │ │ ├── PartialInnerVeilAppearanceController.php
│ │ │ │ ├── PartialInnerVeilFateController.php
│ │ │ │ ├── PartialInnerVeilTextureController.php
│ │ │ │ ├── PartInVeilAnnRiPositController.php
│ │ │ │ ├── PreservationMethodController.php
│ │ │ │ ├── SoilTypeController.php
│ │ │ │ ├── SpeciesController.php
│ │ │ │ ├── SpecimenAgeController.php
│ │ │ │ ├── SpecimenLocationNowController.php
│ │ │ │ ├── StateController.php
│ │ │ │ ├── StemInteriorController.php
│ │ │ │ ├── StemLocationController.php
│ │ │ │ ├── StemShapeController.php
│ │ │ │ ├── StemSurfaceController.php
│ │ │ │ ├── StemTextureController.php
│ │ │ │ ├── TasteController.php
│ │ │ │ ├── ToxicController.php
│ │ │ │ ├── UnivOutVeilAppearController.php
│ │ │ │ ├── UnivOutVeilFateController.php
│ │ │ │ ├── UnivOutVeilTextureController.php
│ │ │ │ └── VeilController.php
│ │ │ ├── MemberListClusterController.php
│ │ │ ├── MemberListGroupController.php
│ │ │ ├── MemberTypeController.php
│ │ │ ├── PlantAssociationController.php
│ │ │ ├── PlantController.php
│ │ │ ├── PossibleMatchController.php
│ │ │ ├── ProfileController.php
│ │ │ ├── ProjectBelongToController.php
│ │ │ ├── RegisteredUserController.php
│ │ │ ├── SessionController.php
│ │ │ ├── SpecimenClusterController.php
│ │ │ ├── SpecimenCompareController.php
│ │ │ ├── SpecimenController.php
│ │ │ ├── SpecimenGroupController.php
│ │ │ ├── SupportArticleController.php
│ │ │ ├── SynonymController.php
│ │ │ └── TreeController.php
│ │ ├── Kernel.php
│ │ ├── Middleware
│ │ │ ├── AdminMiddleware.php
│ │ │ ├── Authenticate.php
│ │ │ ├── CorsMiddleware.php
│ │ │ ├── EncryptCookies.php
│ │ │ ├── RedirectIfAuthenticated.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustProxies.php
│ │ │ └── VerifyCsrfToken.php
│ │ └── Requests
│ │ ├── Auth
│ │ │ └── LoginRequest.php
│ │ ├── ColorRequest.php
│ │ └── ProfileUpdateRequest.php
│ ├── Mail
│ │ ├── ContactFormMail.php
│ │ ├── ContactMail.php
│ │ ├── ImagesSpecimenCreated.php
│ │ └── SpecimenCreated.php
│ ├── Models
│ │ ├── CharacterSpecimen.php
│ │ ├── DataImageSource.php
│ │ ├── DataSourceDataTypes.php
│ │ ├── DataSource.php
│ │ ├── DisplayOption.php
│ │ ├── ImageSpecimen.php
│ │ ├── ImageSpecimenThumbnail.php
│ │ ├── Lookup
│ │ │ ├── Abundance.php
│ │ │ ├── AnnulusPosition.php
│ │ │ ├── BulbType.php
│ │ │ ├── CapContextFlesh.php
│ │ │ ├── CapMarginShape.php
│ │ │ ├── CapMarginType.php
│ │ │ ├── CapShape.php
│ │ │ ├── CapShapeTopView.php
│ │ │ ├── CapSurfaceDryness.php
│ │ │ ├── CapSurfaceTexture.php
│ │ │ ├── Character.php
│ │ │ ├── ChemReaction.php
│ │ │ ├── Color.php
│ │ │ ├── Country.php
│ │ │ ├── DnaSequence.php
│ │ │ ├── Epithet.php
│ │ │ ├── FungusType.php
│ │ │ ├── Genus.php
│ │ │ ├── GillAttachment.php
│ │ │ ├── GillBreadth.php
│ │ │ ├── GillConFleshLatexAbun.php
│ │ │ ├── GillEdge.php
│ │ │ ├── GillOther.php
│ │ │ ├── GillSpacing.php
│ │ │ ├── GillThickness.php
│ │ │ ├── Habitat.php
│ │ │ ├── Habit.php
│ │ │ ├── Lens.php
│ │ │ ├── Odor.php
│ │ │ ├── PartialInnerVeilAppearance.php
│ │ │ ├── PartialInnerVeilFate.php
│ │ │ ├── PartialInnerVeilTexture.php
│ │ │ ├── PartInVeilAnnRiPosit.php
│ │ │ ├── Part.php
│ │ │ ├── PlantAssociation.php
│ │ │ ├── PreservationMethod.php
│ │ │ ├── ProjectBelongTo.php
│ │ │ ├── SoilType.php
│ │ │ ├── Species.php
│ │ │ ├── SpecimenAge.php
│ │ │ ├── SpecimenLocationNow.php
│ │ │ ├── State.php
│ │ │ ├── StemInterior.php
│ │ │ ├── StemLocation.php
│ │ │ ├── StemShape.php
│ │ │ ├── StemSurface.php
│ │ │ ├── StemTexture.php
│ │ │ ├── Taste.php
│ │ │ ├── Toxic.php
│ │ │ ├── UnivOutVeilAppear.php
│ │ │ ├── UnivOutVeilFate.php
│ │ │ ├── UnivOutVeilTexture.php
│ │ │ └── Veil.php
│ │ ├── MemberListCluster.php
│ │ ├── MemberListGroup.php
│ │ ├── MemberType.php
│ │ ├── Plant.php
│ │ ├── PossibleMatch.php
│ │ ├── SpecimenCluster.php
│ │ ├── SpecimenGroup.php
│ │ ├── Specimen.php
│ │ ├── Synonym.php
│ │ ├── Tree.php
│ │ └── User.php
│ ├── Policies
│ │ ├── AdminCharacterPolicy.php
│ │ ├── AdminLookUpTablePolicy.php
│ │ ├── AdminSpecimenPolicy.php
│ │ ├── BookPolicy.php
│ │ ├── ImagesSpecimenPolicy.php
│ │ └── SpecimenPolicy.php
│ ├── Providers
│ │ └── AppServiceProvider.php
│ ├── Repositories
│ │ ├── CharacterSpecimenRepository.php
│ │ ├── ImageRepository.php
│ │ └── Lookup
│ │ └── CharacterRepository.php
│ ├── Services
│ │ ├── CharacterSpecimenService.php
│ │ └── Lookup
│ │ └── CharacterService.php
│ ├── Utils
│ │ ├── DatabaseUtils.php
│ │ ├── DateUtils.php
│ │ ├── ImageUtils.php
│ │ ├── MemberUtils.php
│ │ ├── NumberUtils.php
│ │ └── StringUtils.php
│ └── View
│ └── Components
│ ├── AppLayout.php
│ ├── CharacterSpecimenForm.php
│ ├── DisplayColorCharacterSelectForm.php
│ ├── DisplayExistingBasicSpecimenCharacters.php
│ ├── DisplayExistingSpecimenCharacters.php
│ ├── DisplaySwitch.php
│ ├── EditCharactersSwitch.php
│ ├── GetCharacterSpecimenValueFromLookup.php
│ └── GuestLayout.php
├── artisan
├── bootstrap
│ ├── app.php
│ ├── cache
│ │ ├── config.php
│ │ ├── events.php
│ │ ├── packages.php
│ │ ├── routes-v7.php
│ │ └── services.php
│ └── providers.php
├── composer.json
├── composer.lock
├── config
│ ├── app.php
│ ├── auth.php
│ ├── cache.php
│ ├── database.php
│ ├── filesystems.php
│ ├── livewire.php
│ ├── logging.php
│ ├── mail.php
│ ├── queue.php
│ ├── services.php
│ └── session.php
├── database
│ ├── factories
│ │ ├── CharacterSpecimenFactory.php
│ │ ├── ColorFactory.php
│ │ ├── SpecimenFactory.php
│ │ └── UserFactory.php
│ ├── migrations
│ │ ├── 0001_01_01_000000_create_users_table.php
│ │ ├── 0001_01_01_000001_create_cache_table.php
│ │ ├── 0001_01_01_000002_create_jobs_table.php
│ │ ├── 2024_05_12_000007_create_abundances_table.php
│ │ ├── 2024_05_12_000008_create_annulus_positions_table.php
│ │ ├── 2024_05_12_000009_create_bulb_types_table.php
│ │ ├── 2024_05_12_000010_create_cap_context_flesh_textures_table.php
│ │ ├── 2024_05_12_000011_create_cap_margin_shapes_table.php
│ │ ├── 2024_05_12_000012_create_cap_margin_types_table.php
│ │ ├── 2024_05_12_000013_create_cap_shapes_table.php
│ │ ├── 2024_05_12_000014_create_cap_shape_top_views_table.php
│ │ ├── 2024_05_12_000015_create_cap_surface_dryness_table.php
│ │ ├── 2024_05_12_000016_create_cap_surface_textures_table.php
│ │ ├── 2024_05_12_000017_create_chem_reactions_table.php
│ │ ├── 2024_05_12_000018_create_countries_table.php
│ │ ├── 2024_05_12_000019_create_data_source_data_types_table.php
│ │ ├── 2024_05_12_000020_create_display_options_table.php
│ │ ├── 2024_05_12_000021_create_epithets_table.php
│ │ ├── 2024_05_12_000022_create_fungus_types_table.php
│ │ ├── 2024_05_12_000023_create_genus_table.php
│ │ ├── 2024_05_12_000024_create_gill_attachments_table.php
│ │ ├── 2024_05_12_000025_create_gill_breadths_table.php
│ │ ├── 2024_05_12_000026_create_gill_con_flesh_latex_abuns_table.php
│ │ ├── 2024_05_12_000027_create_gill_edges_table.php
│ │ ├── 2024_05_12_000028_create_gill_others_table.php
│ │ ├── 2024_05_12_000029_create_gill_spacings_table.php
│ │ ├── 2024_05_12_000030_create_gill_thickness_table.php
│ │ ├── 2024_05_12_000031_create_habits_table.php
│ │ ├── 2024_05_12_000032_create_habitats_table.php
│ │ ├── 2024_05_12_000033_create_odors_table.php
│ │ ├── 2024_05_12_000034_create_partial_inner_veil_appearances_table.php
│ │ ├── 2024_05_12_000035_create_partial_inner_veil_fates_table.php
│ │ ├── 2024_05_12_000036_create_partial_inner_veil_textures_table.php
│ │ ├── 2024_05_12_000037_create_part_in_veil_ann_ri_posits_table.php
│ │ ├── 2024_05_12_000038_create_parts_table.php
│ │ ├── 2024_05_12_000039_create_plant_associations_table.php
│ │ ├── 2024_05_12_000040_create_possible_matches_table.php
│ │ ├── 2024_05_12_000041_create_preservation_methods_table.php
│ │ ├── 2024_05_12_000042_create_soil_types_table.php
│ │ ├── 2024_05_12_000043_create_species_table.php
│ │ ├── 2024_05_12_000044_create_specimen_ages_table.php
│ │ ├── 2024_05_12_000045_create_specimen_locations_now_table.php
│ │ ├── 2024_05_12_000047_create_states_table.php
│ │ ├── 2024_05_12_000048_create_stem_interiors_table.php
│ │ ├── 2024_05_12_000049_create_stem_locations_table.php
│ │ ├── 2024_05_12_000050_create_stem_shapes_table.php
│ │ ├── 2024_05_12_000051_create_stem_surfaces_table.php
│ │ ├── 2024_05_12_000052_create_stem_textures_table.php
│ │ ├── 2024_05_12_000053_create_tastes_table.php
│ │ ├── 2024_05_12_000054_create_toxics_table.php
│ │ ├── 2024_05_12_000055_create_universal_outer_veil_appearances_table.php
│ │ ├── 2024_05_12_000056_create_universal_outer_veil_fates_table.php
│ │ ├── 2024_05_12_000057_create_universal_outer_veil_textures_table.php
│ │ ├── 2024_05_12_000058_create_characters_table.php
│ │ ├── 2024_05_12_000058_create_colors_table.php
│ │ ├── 2024_05_12_000058_create_data_sources_table.php
│ │ ├── 2024_05_12_000058_create_lens_table.php
│ │ ├── 2024_05_12_000058_create_member_list_clusters_table.php
│ │ ├── 2024_05_12_000058_create_member_list_groups_table.php
│ │ ├── 2024_05_12_000058_create_member_types_table.php
│ │ ├── 2024_05_12_000058_create_plants_table.php
│ │ ├── 2024_05_12_000058_create_specimen_clusters_table.php
│ │ ├── 2024_05_12_000058_create_specimen_groups_table.php
│ │ ├── 2024_05_12_000058_create_synonyms_table.php
│ │ ├── 2024_05_12_000058_create_veils_table.php
│ │ ├── 2024_05_12_000059_create_specimens_table.php
│ │ ├── 2024_05_12_000060_create_character_specimens_table.php
│ │ ├── 2024_07_11_000061_create_dna_sequences_table.php
│ │ ├── 2024_07_18_000058_create_data_image_sources_table.php
│ │ ├── 2024_07_20_000058_create_image_specimens_table.php
│ │ ├── 2024_07_29_064010_create_image_specimen_thumbnails_table.php
│ │ └── 2024_08_09_064010_create_project_belong_tos_table.php
│ └── seeders
│ ├── DatabaseSeeder.php
│ └── Lookup
├── favicon.ico
├── index.php
├── LICENSE
├── package.json
├── package-lock.json
├── php_errors.log
├── phpinfo.php
├── phpunit.xml
├── postcss.config.js
├── prettierrc.json
├── project_structure.txt
├── public
│ ├── build
│ │ └── manifest.json
│ ├── favicon.ico
│ ├── hot
│ ├── index.php
│ ├── php_errors.log
│ ├── phpinfo.php
│ ├── robots.txt
│ └── storage -> /var/www/public_html/mrdbid/storage/app/public
├── README.md
├── resources
│ ├── css
│ │ └── app.css
│ ├── js
│ │ ├── app.js
│ │ └── bootstrap.js
│ └── views
│ ├── about.blade.php
│ ├── admin
│ │ ├── admin_character
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_data_source
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_export_database
│ │ │ └── index.blade.php
│ │ ├── admin_lookup
│ │ │ ├── create.blade.php
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ ├── admin_specimen
│ │ │ ├── edit.blade.php
│ │ │ ├── index.blade.php
│ │ │ └── show.blade.php
│ │ └── dashboard.blade.php
│ ├── auth
│ │ ├── confirm-password.blade.php
│ │ ├── forgot-password.blade.php
│ │ ├── login.blade.php
│ │ ├── register.blade.php
│ │ ├── reset-password.blade.php
│ │ └── verify-email.blade.php
│ ├── book.blade.php
│ ├── characters
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── OLD_index.blade.php
│ │ └── show.blade.php
│ ├── character_specimens
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── OLD_index.blade.php
│ │ └── show.blade.php
│ ├── components
│ │ ├── admin-dashboard-nav-bar.blade.php
│ │ ├── application-logo.blade.php
│ │ ├── auth-session-status.blade.php
│ │ ├── autocomplete.blade.php
│ │ ├── autocomplete_edit.blade.php
│ │ ├── button.blade.php
│ │ ├── danger-button.blade.php
│ │ ├── dashboard-nav-bar.blade.php
│ │ ├── display-character-by-display-option-switch.blade.php
│ │ ├── display-character-specimens-form.blade.php
│ │ ├── display-color-character-select-table.blade.php
│ │ ├── display-colors-top-characters-bottom-form-table.blade.php
│ │ ├── display-existing-basic-specimen-characters.blade.php
│ │ ├── display-existing-specimen-characters.blade.php
│ │ ├── display-state-country-dropdown.blade.php
│ │ ├── display-state-country-dropdown-edit.blade.php
│ │ ├── display-unset-characters.blade.php
│ │ ├── dropdown.blade.php
│ │ ├── dropdown-link.blade.php
│ │ ├── edit_characters_switch.blade.php
│ │ ├── form-button.blade.php
│ │ ├── form-error.blade.php
│ │ ├── form-field.blade.php
│ │ ├── form-input.blade.php
│ │ ├── form-label.blade.php
│ │ ├── get-character-specimen-value-from-lookup.blade.php
│ │ ├── input-error.blade.php
│ │ ├── input-label.blade.php
│ │ ├── login-logout-option-bar.blade.php
│ │ ├── modal.blade.php
│ │ ├── nav-link.blade.php
│ │ ├── notification.blade.php
│ │ ├── primary-button.blade.php
│ │ ├── responsive-nav-link.blade.php
│ │ ├── secondary-button.blade.php
│ │ ├── site-nav-bar.blade.php
│ │ ├── specimen-nav-bar_NOT_USED.blade.php
│ │ ├── specimens-nav-bar.blade.php
│ │ ├── specimens-nav-link.blade.php
│ │ └── text-input.blade.php
│ ├── contact.blade.php
│ ├── data_sources
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── emails
│ │ └── contact.blade.php
│ ├── home.blade.php
│ ├── image_specimen
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── layouts
│ │ ├── app.blade.php
│ │ └── guest.blade.php
│ ├── mail
│ │ └── specimen-created.blade.php
│ ├── profile
│ │ ├── edit.blade.php
│ │ └── partials
│ │ ├── delete-user-form.blade.php
│ │ ├── update-password-form.blade.php
│ │ └── update-profile-information-form.blade.php
│ ├── clusters
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── specimen_compare
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── specimen_groups
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── show.blade.php
│ ├── specimens
│ │ ├── create.blade.php
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ ├── look_up_tables
│ │ │ ├── abundance.blade.php
│ │ │ ├── annulus_position.blade.php
│ │ │ ├── bulb_type.blade.php
│ │ │ ├── cap_context_flesh_texture.blade.php
│ │ │ ├── cap_margin_shape.blade.php
│ │ │ ├── cap_margin_type.blade.php
│ │ │ ├── cap_shape.blade.php
│ │ │ ├── cap_shape_top_view.blade.php
│ │ │ ├── cap_surface_dryness.blade.php
│ │ │ ├── cap_surface_texture.blade.php
│ │ │ ├── chem_reaction.blade.php
│ │ │ ├── colors.blade.php
│ │ │ ├── country.blade.php
│ │ │ ├── data_image_sources.blade.php
│ │ │ ├── data_source_data_type.blade.php
│ │ │ ├── display_option.blade.php
│ │ │ ├── dna_sequence.blade.php
│ │ │ ├── epithet.blade.php
│ │ │ ├── fungus_type.blade.php
│ │ │ ├── genus.blade.php
│ │ │ ├── gill_attachment.blade.php
│ │ │ ├── gill_breadth.blade.php
│ │ │ ├── gill_context_flesh_latex_abundance.blade.php
│ │ │ ├── gill_edge.blade.php
│ │ │ ├── gill_other.blade.php
│ │ │ ├── gill_spacing.blade.php
│ │ │ ├── gill_thickness.blade.php
│ │ │ ├── habitat.blade.php
│ │ │ ├── habit.blade.php
│ │ │ ├── lens.blade.php
│ │ │ ├── member_type.blade.php
│ │ │ ├── odor.blade.php
│ │ │ ├── part.blade.php
│ │ │ ├── partial_inner_veil_appearance.blade.php
│ │ │ ├── partial_inner_veil_fate.blade.php
│ │ │ ├── partial_inner_veil_texture.blade.php
│ │ │ ├── part_in_veil_ann_ri_posit.blade.php
│ │ │ ├── plant_association.blade.php
│ │ │ ├── plant.blade.php
│ │ │ ├── possible_match.blade.php
│ │ │ ├── preservation_method.blade.php
│ │ │ ├── project_belong_to.blade.php
│ │ │ ├── soil_type.blade.php
│ │ │ ├── species.blade.php
│ │ │ ├── specimen_age.blade.php
│ │ │ ├── specimen_cluster.blade.php
│ │ │ ├── group.blade.php
│ │ │ ├── specimen_location_now.blade.php
│ │ │ ├── state.blade.php
│ │ │ ├── stem_interior.blade.php
│ │ │ ├── stem_location.blade.php
│ │ │ ├── stem_shape.blade.php
│ │ │ ├── stem_surface.blade.php
│ │ │ ├── stem_texture.blade.php
│ │ │ ├── synonym.blade.php
│ │ │ ├── taste.blade.php
│ │ │ ├── toxic.blade.php
│ │ │ ├── universal_outer_veil_appearance.blade.php
│ │ │ ├── universal_outer_veil_fate.blade.php
│ │ │ ├── universal_outer_veil_texture.blade.php
│ │ │ └── veil.blade.php
│ │ └── show.blade.php
│ └── trees
│ ├── create.blade.php
│ ├── edit.blade.php
│ ├── index.blade.php
│ └── show.blade.php
├── robots.txt
├── routes
│ ├── admin_routes.php
│ ├── api.php
│ ├── auth.php
│ ├── auth_routes.php
│ ├── console.php
│ ├── email_routes.php
│ ├── public_routes.php
│ ├── test_routes.php
│ ├── user_routes.php
│ └── web.php
├── scripts
│ └── deploy.sh
├── storage
│ ├── app
│ │ ├── public
│ │ │ ├── export
│ │ │ │ ├── mrdbid_2024-09-10
│ │ │ │ │ └── mrdbid.sql
│ │ │ │ ├── mrdbid_2024-10-12
│ │ │ │ │ ├── mrdbid_INSERT_INTO.sql
│ │ │ │ │ └── mrdbid.sql
│ │ │ │ └── mrdbid_2024-11-05
│ │ │ │ ├── mrdbid_INSERT_INTO.sql
│ │ │ │ └── mrdbid.sql
│ │ │ ├── images
│ │ │ │ ├── AMS_colors
│ │ │ │ │ ├── banner_50x50
│ │ │ │ │ │ ├── banner_10.jpg
│ │ │ │ │ │ ├── banner_11.jpg
│ │ │ │ │ │ ├── banner_12.jpg
│ │ │ │ │ │ ├── banner_13.jpg
│ │ │ │ │ │ ├── banner_14.jpg
│ │ │ │ │ │ ├── banner_15.jpg
│ │ │ │ │ │ ├── banner_16.jpg
│ │ │ │ │ │ ├── banner_17.jpg
│ │ │ │ │ │ ├── banner_18.jpg
│ │ │ │ │ │ ├── banner_19.jpg
│ │ │ │ │ │ ├── banner_1.jpg
│ │ │ │ │ │ ├── banner_20.jpg
│ │ │ │ │ │ ├── banner_21.jpg
│ │ │ │ │ │ ├── banner_22.jpg
│ │ │ │ │ │ ├── banner_23.jpg
│ │ │ │ │ │ ├── banner_24.jpg
│ │ │ │ │ │ ├── banner_25.jpg
│ │ │ │ │ │ ├── banner_26.jpg
│ │ │ │ │ │ ├── banner_27.jpg
│ │ │ │ │ │ ├── banner_28.jpg
│ │ │ │ │ │ ├── banner_29.jpg
│ │ │ │ │ │ ├── banner_2.jpg
│ │ │ │ │ │ ├── banner_30.jpg
│ │ │ │ │ │ ├── banner_31.jpg
│ │ │ │ │ │ ├── banner_32.jpg
│ │ │ │ │ │ ├── banner_33.jpg
│ │ │ │ │ │ ├── banner_34.jpg
│ │ │ │ │ │ ├── banner_35.jpg
│ │ │ │ │ │ ├── banner_36.jpg
│ │ │ │ │ │ ├── banner_37.jpg
│ │ │ │ │ │ ├── banner_38.jpg
│ │ │ │ │ │ ├── banner_39.jpg
│ │ │ │ │ │ ├── banner_3.jpg
│ │ │ │ │ │ ├── banner_40.jpg
│ │ │ │ │ │ ├── banner_41.jpg
│ │ │ │ │ │ ├── banner_42.jpg
│ │ │ │ │ │ ├── banner_43.jpg
│ │ │ │ │ │ ├── banner_44.jpg
│ │ │ │ │ │ ├── banner_45.jpg
│ │ │ │ │ │ ├── banner_46.jpg
│ │ │ │ │ │ ├── banner_47.jpg
│ │ │ │ │ │ ├── banner_48.jpg
│ │ │ │ │ │ ├── banner_49.jpg
│ │ │ │ │ │ ├── banner_4.jpg
│ │ │ │ │ │ ├── banner_50.jpg
│ │ │ │ │ │ ├── banner_5.jpg
│ │ │ │ │ │ ├── banner_6.jpg
│ │ │ │ │ │ ├── banner_7.jpg
│ │ │ │ │ │ ├── banner_8.jpg
│ │ │ │ │ │ └── banner_9.jpg
│ │ │ │ │ └── color_big
│ │ │ │ │ ├── color_big_10.jpg
│ │ │ │ │ ├── color_big_11.jpg
│ │ │ │ │ ├── color_big_12.jpg
│ │ │ │ │ ├── color_big_13.jpg
│ │ │ │ │ ├── color_big_14.jpg
│ │ │ │ │ ├── color_big_15.jpg
│ │ │ │ │ ├── color_big_16.jpg
│ │ │ │ │ ├── color_big_17.jpg
│ │ │ │ │ ├── color_big_18.jpg
│ │ │ │ │ ├── color_big_19.jpg
│ │ │ │ │ ├── color_big_1.jpg
│ │ │ │ │ ├── color_big_20.jpg
│ │ │ │ │ ├── color_big_21.jpg
│ │ │ │ │ ├── color_big_22.jpg
│ │ │ │ │ ├── color_big_23.jpg
│ │ │ │ │ ├── color_big_24.jpg
│ │ │ │ │ ├── color_big_25.jpg
│ │ │ │ │ ├── color_big_26.jpg
│ │ │ │ │ ├── color_big_27.jpg
│ │ │ │ │ ├── color_big_28.jpg
│ │ │ │ │ ├── color_big_29.jpg
│ │ │ │ │ ├── color_big_2.jpg
│ │ │ │ │ ├── color_big_30.jpg
│ │ │ │ │ ├── color_big_31.jpg
│ │ │ │ │ ├── color_big_32.jpg
│ │ │ │ │ ├── color_big_33.jpg
│ │ │ │ │ ├── color_big_34.jpg
│ │ │ │ │ ├── color_big_35.jpg
│ │ │ │ │ ├── color_big_36.jpg
│ │ │ │ │ ├── color_big_37.jpg
│ │ │ │ │ ├── color_big_38.jpg
│ │ │ │ │ ├── color_big_39.jpg
│ │ │ │ │ ├── color_big_3.jpg
│ │ │ │ │ ├── color_big_40.jpg
│ │ │ │ │ ├── color_big_41.jpg
│ │ │ │ │ ├── color_big_42.jpg
│ │ │ │ │ ├── color_big_43.jpg
│ │ │ │ │ ├── color_big_44.jpg
│ │ │ │ │ ├── color_big_45.jpg
│ │ │ │ │ ├── color_big_46.jpg
│ │ │ │ │ ├── color_big_47.jpg
│ │ │ │ │ ├── color_big_48.jpg
│ │ │ │ │ ├── color_big_49.jpg
│ │ │ │ │ ├── color_big_4.jpg
│ │ │ │ │ ├── color_big_50.jpg
│ │ │ │ │ ├── color_big_5.jpg
│ │ │ │ │ ├── color_big_6.jpg
│ │ │ │ │ ├── color_big_7.jpg
│ │ │ │ │ ├── color_big_8.jpg
│ │ │ │ │ └── color_big_9.jpg
│ │ │ │ └── AMS_Field_Data_Sheet_400x298.png
│ │ │ └── uploaded_images
│ │ │ ├── 1_1723764587_IMG_9020.JPG
│ │ │ ├── 1_1724715015_stack_w4_48_52_pmax.jpg
│ │ │ ├── 1_1728470506_IMG_9282.jpg
│ │ │ ├── 1_1728470536_IMG_9280.jpg
│ │ │ ├── 2_1724948724_wofford_terriers_logo_primary_dark_2019_sportslogosnet-6482.png
│ │ │ ├── 2_1726157616_IMG_9020.JPG
│ │ │ ├── 2_1726157646_IMG_9323.JPG
│ │ │ ├── 2_1726157721_IMG_9439.JPG
│ │ │ ├── 2_1726157740_stack_w1_30_32_pmax.jpg
│ │ │ ├── 2_1726157763_stack_w3_44_47_pmax.jpg
│ │ │ ├── 2_1726168287_stack_w4_48_52_pmax.jpg
│ │ │ ├── 2_1726170015_IMG_9050.JPG
│ │ │ ├── 2_1726170038_stack_8_5948_5963_pmax.jpg
│ │ │ ├── 2_1726170055_stack_7_5939_5947_pmax.jpg
│ │ │ ├── 2_1726170069_stack_6_5915_5935_pmax.jpg
│ │ │ ├── 3_1725219303_wofford_terriers_logo_primary_dark_2019_sportslogosnet-6482.png
│ │ │ └── thumbnail
│ │ │ ├── thumb_1_1723764587_IMG_9020.JPG
│ │ │ ├── thumb_1_1724715015_stack_w4_48_52_pmax.jpg
│ │ │ ├── thumb_1_1728470506_IMG_9282.jpg
│ │ │ ├── thumb_1_1728470536_IMG_9280.jpg
│ │ │ ├── thumb_2_1724948724_wofford_terriers_logo_primary_dark_2019_sportslogosnet-6482.png
│ │ │ ├── thumb_2_1726157616_IMG_9020.JPG
│ │ │ ├── thumb_2_1726157646_IMG_9323.JPG
│ │ │ ├── thumb_2_1726157721_IMG_9439.JPG
│ │ │ ├── thumb_2_1726157740_stack_w1_30_32_pmax.jpg
│ │ │ ├── thumb_2_1726157763_stack_w3_44_47_pmax.jpg
│ │ │ ├── thumb_2_1726168287_stack_w4_48_52_pmax.jpg
│ │ │ ├── thumb_2_1726170015_IMG_9050.JPG
│ │ │ ├── thumb_2_1726170038_stack_8_5948_5963_pmax.jpg
│ │ │ ├── thumb_2_1726170055_stack_7_5939_5947_pmax.jpg
│ │ │ ├── thumb_2_1726170069_stack_6_5915_5935_pmax.jpg
│ │ │ └── thumb_3_1725219303_wofford_terriers_logo_primary_dark_2019_sportslogosnet-6482.png
│ │ └── support-articles
│ │ └── MBList
│ │ ├── 10_1_2024_MBList_zip_download
│ │ │ ├── MBList.xlsx
│ │ │ └── MBList.zip
│ │ ├── 10_1_2024_where_did_MBList_go.txt
│ │ ├── greek_letter_infraspecific.txt
│ │ ├── MBList_count_taxon_name_parts.php
│ │ ├── MBList_get_genus_names.php
│ │ ├── MBList_get_Greek_alpha.php
│ │ ├── MBList_get_name.php
│ │ ├── MBList_process_list.php
│ │ ├── MBList_select_distinct_values.php
│ │ └── Mycobank_Database
│ │ ├── GenBank.txt
│ │ ├── greek_letter_infraspecific.txt
│ │ ├── mycobank_genera.txt
│ │ └── taxonomy.txt
│ ├── debugbar
│ │ ├── X001ae4b5de65875754e5b5494bb8632c.json
│ │ ├── X0091d4d4169823f0790f067e41c66d53.json
│ │ ├── X01440dfc1c8f84ce4b90df05c2de6a59.json
│ │ ├── X0306cbdbd130da351b5408b256898564.json
│ │ ├── X074334a42f36b071d8c8f8dff9936ad5.json
│ │ ├── X07df36716cfba1aa69b8f1f46b753374.json
│ │ ├── X09406eb23b308032cd81fae9ea02d307.json
│ │ ├── X0a43153f513a11badad543213565404e.json
│ │ ├── X0b197c61483d026a81ff5ea5af590e39.json
│ │ ├── X0ef6cae2ff08e1ffcb66c592c93979a8.json
│ │ ├── X124d36bc89346c4d5f9e3097431a3bcd.json
│ │ ├── X1440a1c176db41eab35fc805a025a82d.json
│ │ ├── X152e8422f9978532f2fa49ca3ff3c355.json
│ │ ├── X15e77aafbe063acfd194806b7fdaa822.json
│ │ ├── X236e701fce518941112346e34e7e2f5e.json
│ │ ├── X23c79778d1096767f24f2188d874eeec.json
│ │ ├── X24480e01546316c5e7ad400244db5c9c.json
│ │ ├── X26da5e6a63ce2704a57b34a01ad5a6a9.json
│ │ ├── X2b588a9547461121928c7a36e8aa7150.json
│ │ ├── X2bc22ae257e8b902ef5d8136700f3ec3.json
│ │ ├── X2f5067638dedca9487611819cd10321f.json
│ │ ├── X3082daf64809d346cee8f04d07c34191.json
│ │ ├── X3746379284971731889f3485d6f4f8bb.json
│ │ ├── X37da7c435ee37178eb96e6370a07c6aa.json
│ │ ├── X3c9cd7085393ac08781d06c97694c358.json
│ │ ├── X3ed5cd3f09b695d912cca75b8acd59bf.json
│ │ ├── X3f3834bf1a7acf424236bd02c6985b08.json
│ │ ├── X3f765f81b313f6e445d3e7fa548a21c3.json
│ │ ├── X4003cdfb0d8fe206f596e23d8ff70bb0.json
│ │ ├── X448ab6c1de8868fdec15df86095925a1.json
│ │ ├── X4bee1cd9fd1c1c43dec7bc1a7367d7c3.json
│ │ ├── X4c889e9040598ec091f4955c3eb64de2.json
│ │ ├── X4f3ba29d8fa64f065448d4d79d783eff.json
│ │ ├── X51b4f4d29c0615ad2da7fa1438a607d6.json
│ │ ├── X5719e2c9f7c966478d46c02b61896a1f.json
│ │ ├── X59e2fd24cd2e236e6e7c61251f756280.json
│ │ ├── X5c61c88f3ec3230e96b8c1b780945135.json
│ │ ├── X5db2cca034dc71f5f7afffcabca9c061.json
│ │ ├── X5f2e6b298c01a4b8702e4e8352e186a8.json
│ │ ├── X62c856a5dc523fb933a290178c718556.json
│ │ ├── X636146918cb6dcff8e9e4e13914eb6e8.json
│ │ ├── X696942a27aba66039876095d5a2bc3a7.json
│ │ ├── X711780bcb68af0afd4f2486cb20fa28f.json
│ │ ├── X732fe5bd1b2f16e1c558bddf943489d4.json
│ │ ├── X7435146327488c32e4108d02a22bdbc7.json
│ │ ├── X74e9a866cdb254a51c707ab7b9053a69.json
│ │ ├── X752213d85feb6f934c577081ef7f9a88.json
│ │ ├── X76db1cae1e760c82200aa5d14739aad5.json
│ │ ├── X7872cf49a84a2602617e930af1b8328c.json
│ │ ├── X78dd6dcd301d6ca871542b9c1a851366.json
│ │ ├── X81814d899320a9f0a4614433fea91ae6.json
│ │ ├── X859b23d92c88ace23a0d77eed6ed55cf.json
│ │ ├── X8915c8766cba6a538a0a5f36116fbe18.json
│ │ ├── X89a7af715e52096f5482381032b6a98c.json
│ │ ├── X8a1b94b9be98084c55f4eea8c2a68ce3.json
│ │ ├── X915249a1d42a775e7064a50f2367404b.json
│ │ ├── X9b22b61beaa7f28966433c8cafdaa89e.json
│ │ ├── X9bc9a5cc9e6749071aac369e26b0cc2a.json
│ │ ├── X9d280d32b6101d9305bc3baccce003e2.json
│ │ ├── Xa35147403c4dc58529d6b1d98e6e66f6.json
│ │ ├── Xa734b81a81724326a0bf6e7a4edb3a7d.json
│ │ ├── Xacf5185a2d7d875f37f9eef3a77412a5.json
│ │ ├── Xae08c5a6bba4fe267eb929b3021a7321.json
│ │ ├── Xae639c5ccb7e5601fc0c4033f4ca8b19.json
│ │ ├── Xb2f5ab5511f1301c2161032f4f7780f0.json
│ │ ├── Xb322f063dfd3076471a9652acec625ec.json
│ │ ├── Xb49aabb2af7aa5327d1e37c09ce8233a.json
│ │ ├── Xb586a23f109ef77b5a2ca3cf8ae105de.json
│ │ ├── Xb5f9746e0b07fba4a03fe680f01752a6.json
│ │ ├── Xb735a15c5ccf645aa2110676e39a2156.json
│ │ ├── Xb777bfcff617f1ee076e67a255251b05.json
│ │ ├── Xb7a9fcdaac9a6a4d17f1819a97fd2b01.json
│ │ ├── Xba58028298028d666e70b885687a3d13.json
│ │ ├── Xbba794119ab0514f15668bbf8fdba238.json
│ │ ├── Xbc327ed0839be82a4aa9d10d6498db1c.json
│ │ ├── Xbeabf32b0f009207e5780fcd9772f0e0.json
│ │ ├── Xbfc9d369f07f5c364fc529638c3f2e5f.json
│ │ ├── Xc5c3483701fa42b2306e428b5fa22114.json
│ │ ├── Xc83a50d2d171a2f33f7f0a370c3482d5.json
│ │ ├── Xc9615ac04524d7a636b3a4f10e3c3505.json
│ │ ├── Xcb52071733dd0364b1326fcd88be5fb9.json
│ │ ├── Xcd4076dd07c8bacc81f49be48db43f39.json
│ │ ├── Xce0662c799392637ef4673f1faa2045d.json
│ │ ├── Xd24762715a3d454cacf0865baf690121.json
│ │ ├── Xd3cc6339f9a5a3d3f11f9aae49cab1f5.json
│ │ ├── Xd72ce3bc238f2fac8e2480f8c39f7b0a.json
│ │ ├── Xd9998954424af01309d84dd2477cb194.json
│ │ ├── Xdbc1ce5ddb93d42d650b40e96c44626f.json
│ │ ├── Xdc56818d5ef82a7a1092c10ecc5a2965.json
│ │ ├── Xe1f4169653aefcbffa365107a94f5c27.json
│ │ ├── Xe36d68d381fcb3f1d3c50c11f6cc0f59.json
│ │ ├── Xf0594cd7b0606e596998c4b4ecd32159.json
│ │ ├── Xf064c2ca0b77c1594fb66dc119979063.json
│ │ ├── Xf44926b896d73b51b507f36506100185.json
│ │ ├── Xf578a59a8e8b85ca004441690056f426.json
│ │ ├── Xfa22dfde62e5f289360617882056e219.json
│ │ ├── Xfad4fb4730d8a01e4efde87721033c1d.json
│ │ ├── Xfd9af8d5cf2bee1a3bcbe4560b1a0d57.json
│ │ └── Xfe6ef3885e16842ab2b7d57fd1351bf6.json
│ ├── framework
│ │ ├── cache
│ │ │ └── data
│ │ ├── sessions
│ │ ├── testing
│ │ └── views
│ │ ├── 011cdaaa474af7b172ec2ce9c9fc8c08.php
│ │ ├── 01bd0ce27b9f4a0de47a1a89c4cb3bd8.php
│ │ ├── 023b30818299bdbf82ef1c1de9550b4b.php
│ │ ├── 032265c8a79b50778b6db8ce6bea5768.php
│ │ ├── 034ed6b6c23aeee690f2af7a5d48a7f3.php
│ │ ├── 03670b5cf93559cb21049fa5310131ac.php
│ │ ├── 0397bee5ee3a114074e9499a449aab22.php
│ │ ├── 03daa0bc1577b5c17891227c67af9b4e.php
│ │ ├── 03fbfc4cae9a9525d8f46663b54eca79.php
│ │ ├── 06139dc5f0fb65f6373849f0b5321403.php
│ │ ├── 06744db25238f6454c5e3884fa084748.php
│ │ ├── 06ebd1d3b3ca685128f5253db875701f.php
│ │ ├── 06f1bedeaf80fced8d1c0aac4ab387f1.php
│ │ ├── 07f105e9dc5b31aae6ee7c7c1de2e904.php
│ │ ├── 0819c4338c212f328185b38421068cdc.php
│ │ ├── 096a0c1551f0ac426070f410ba870bca.php
│ │ ├── 099d7345834ba78b7bae0f36edb3a706.php
│ │ ├── 09e9fd03b6faf2b35d9466930a57501c.php
│ │ ├── 0a05e82c6d6f419686eb3b42e10a1924.php
│ │ ├── 0a23119795b611e6f8554f5ba739f495.php
│ │ ├── 0b7847e04bb95d513df173d37899daf4.php
│ │ ├── 0b8f245d27b9a1d14feafa5649d1d8b8.php
│ │ ├── 0cd3642c5635e80c11aec7437d665310.php
│ │ ├── 0cd596a6f896b32574645854eff62939.php
│ │ ├── 0ce409d6d6e46af85621e66b2b5a0e66.php
│ │ ├── 0d6b17bb7de6cb980f51ed74d3e6479b.php
│ │ ├── 0dd6faabe1e5c759477850752b2a1707.php
│ │ ├── 0e876ccea9a49a8c50e946e7801acd79.php
│ │ ├── 0f0586af24e9f29ecac4ec029e2a72bf.php
│ │ ├── 0f8a120539930a156a8a1eff02cbf8b9.php
│ │ ├── 0fbf94dbd913f365421af1d80ca41248.php
│ │ ├── 102167c4e8357b25b31e00c1599dbf95.php
│ │ ├── 110b0d600e618a3ae58ce40aee217757.php
│ │ ├── 110e8c4b992e96d4c6013990a637edd4.php
│ │ ├── 11e8c0a05443ca78cd329282c22f76df.php
│ │ ├── 12077b5fcc220098986377bd86e3cb5b.php
│ │ ├── 1259ff6a9308adfcb999e8aff59b6146.php
│ │ ├── 1275eeb2b61e1e80f61135126e084b88.php
│ │ ├── 12a20957d07d60b1f3d0bb5f31d0dfdd.php
│ │ ├── 12e896e37fc28690fa53df014e071feb.php
│ │ ├── 13769ac6ce1961d5d2a2ea0a4617fcd4.php
│ │ ├── 13decd84e7ef56cdab50e8c05d015715.php
│ │ ├── 1509f574ef7ac081cced96b83d12769c.php
│ │ ├── 15d4b62587e68a87b818fa27069ac931.php
│ │ ├── 167a9a025652d98e82e03ad1c8119850.php
│ │ ├── 16de59b80670222696428d4aba6763ed.php
│ │ ├── 16ecd59a6d8a3c24d4195757bc9a1d82.php
│ │ ├── 17d9770dc3528783f708482603bf4ee1.php
│ │ ├── 17fd69a1b6de90fe89d0489d0e98714a.php
│ │ ├── 18197cc55536bd2c3355fabaa5ce013c.php
│ │ ├── 18e7c64e71ac8e65b94129afc311fb1c.php
│ │ ├── 1b336c347a62a99d08bcfd0eda11ba60.php
│ │ ├── 1b73f552b0b97fb6007c9210add58b2a.php
│ │ ├── 1c7866c1966aec650b2dd9a1b492a4dc.php
│ │ ├── 1caa9b4aa0f4bada753fec15d01484d4.php
│ │ ├── 1da2161f40d927eb967ddaf0cebdfaa5.php
│ │ ├── 1db23700b9c59973ed6094ad4f8a9f04.php
│ │ ├── 1e36f28f563cb08ca9984fa02e1b55f3.php
│ │ ├── 1e9fb8ae5a5a111a330be1a2eda820bd.php
│ │ ├── 1eae4d65b03de14d4c1b697f07feb38d.php
│ │ ├── 1f0c1e74d563fa1eec07e0d79682eeb7.php
│ │ ├── 1f24c1c2336eccd448196c9059454fde.php
│ │ ├── 2099f9a68f8f52a00008ffb9ed33deee.php
│ │ ├── 2104204f283d32a29ab65f06999b71d8.php
│ │ ├── 21a0b35ad62dc8b16de51d450c76e1ab.php
│ │ ├── 21bf7e8412cd9ef86e053819922119d1.php
│ │ ├── 21e93d7da11312259ca24abbf5c5d0ad.php
│ │ ├── 223ccf0eeb6fce3779f8c87d69fb9ffe.php
│ │ ├── 2243c4e8dbde35cdc63d0b3f68cc861c.php
│ │ ├── 2258206f60c7d0ff0c0206c03e6adad4.php
│ │ ├── 239eb21c3f59d9cabf11c86dbcaf659b.php
│ │ ├── 26139fcbeaedd9cf4e3125b961348b0a.php
│ │ ├── 26d0a2ff30bb9b8c4bf33bc3bddd26af.php
│ │ ├── 27d7ca7454d9568e7f33c7909c40793e.php
│ │ ├── 285de5d131c372560e552a7e6da878f2.php
│ │ ├── 28eec24903344c797f8db6e0d096a0b6.php
│ │ ├── 29674104e68cd253294176a2cd966338.php
│ │ ├── 298a252c1c9ee1e162a6679ff067265d.php
│ │ ├── 2a997fac5d93aa209c39dfa35b8836df.php
│ │ ├── 2aeb6ab9fda38719a98ec92e241ec13e.php
│ │ ├── 2b03e11e86b8b7be2d04439eb5a4744a.php
│ │ ├── 2b43b1b0d7b0c83047c6a92d07c72a50.php
│ │ ├── 2bab7269ef1872517c0df90b35a05638.php
│ │ ├── 2be7ae14c74987d0aa820d628ebab728.php
│ │ ├── 2c53543d3754a581ee919afd248c155e.php
│ │ ├── 2cafe9efa49f8c26d8c57c4856d89b2c.php
│ │ ├── 2cb9b1afce90f18194f133ad8d49c718.php
│ │ ├── 2cb9e170b798098570b7f9ca8cde1cf2.php
│ │ ├── 2dbb9bbf655834508e45a8bd2dae8723.php
│ │ ├── 2dcc10caeaef49681f0f473e855bd9d8.php
│ │ ├── 2f73dac77faca81e0fd43905c41deec6.php
│ │ ├── 2fc4d1b566e7620715a6a297bfe4af2f.php
│ │ ├── 2fd9850244ea73a585baefa5fe46aeab.php
│ │ ├── 31c5b113d9ed751902f0b2500e64175e.php
│ │ ├── 32aa0f721921b327aa6d80164529835d.php
│ │ ├── 331ab8ad650b6ac5580985b4324a1a0a.php
│ │ ├── 332d27d39692acd9e027ca337c14ecd3.php
│ │ ├── 33f7da7e9a3365a448e0f817b7d31278.php
│ │ ├── 347ec0ca4bd3ba7d5370d2699003d2b6.php
│ │ ├── 34da25758d265352233720288c53c269.php
│ │ ├── 3537558fbc39af4801f94017150d1736.php
│ │ ├── 3556ae240221197fdaae59f0e9b24376.php
│ │ ├── 35db9af03c6dc5675a858c7cfedb9be4.php
│ │ ├── 35fbe7908a814a38df5c3c62ce4a0a27.php
│ │ ├── 363c02de6f9e5a7d736a901e3452612f.php
│ │ ├── 3648041dba1e4067d2f6265d17d371e0.php
│ │ ├── 37bf1a96bc61cc56398c35db0f3a4e16.php
│ │ ├── 396aeab964d238654fbb9162c34f8317.php
│ │ ├── 39b9297bd9b94fafa492b637050c83a6.php
│ │ ├── 3a2750e0bf2b0257e65e998a1ce51782.php
│ │ ├── 3a5bc4e1722f07230150057742273677.php
│ │ ├── 3a6350e26d756101e22586440bc5a7b5.php
│ │ ├── 3bb3562a197e3d429eada9a95321a4a9.php
│ │ ├── 3bb47041e5fe2d102904abc9491c13be.php
│ │ ├── 3d59c626a03d7aacb7ef3ca730a4cb6e.php
│ │ ├── 3db4bb515eba20193537d4f7bdc160cf.php
│ │ ├── 3dc0f7bc7330a1c0649d7b3948333a6b.php
│ │ ├── 3e0abc4278fb7a835259ffb21cf61114.php
│ │ ├── 3f4b0b6848b1c37fa1fbe054288c1b77.php
│ │ ├── 40266b8698ee9069761a86036cfb2d20.php
│ │ ├── 40c0f2837e5eecc38e851d443c376faf.php
│ │ ├── 4104698d78290746f9ae58e75b53c29f.php
│ │ ├── 410edf0ce75c5a3940fd6df01a04a376.php
│ │ ├── 414aed0db09e86978d1cf2370d55fa1e.php
│ │ ├── 41b4dce449da2c32cd6cdbe521525a8f.php
│ │ ├── 41d5b6cdd5a4f3bcc0906ec29d930133.php
│ │ ├── 42936a13d1cc6a4b6f86e415c2ecd985.php
│ │ ├── 43453114ce4ad13353c1ceb2fbce2504.php
│ │ ├── 436ae706990d2f7f3b8bd9dd0040c42c.php
│ │ ├── 4440bcd765257404c1ba9894fc84b10a.php
│ │ ├── 4469a1eb1607229f90e0ee8abfb50901.php
│ │ ├── 45e912e948ca8bcba540a9ea915353e9.php
│ │ ├── 4727898171d260a081427b1e4307b9d7.php
│ │ ├── 478af176dc881e141c7d329f17c73042.php
│ │ ├── 478ce74a9003f83d57112c98a0ac7d44.php
│ │ ├── 4824fcc3f573913100de563697a821dd.php
│ │ ├── 4860faa4082f401cc73e0e68f8a55079.php
│ │ ├── 48977b447a86f8701da21c926f032625.php
│ │ ├── 4a149426d7773af67e5f1aef1a778cbb.php
│ │ ├── 4a64f8f843be3d6ab26f234b4512a3bb.php
│ │ ├── 4ae29ea196e2d2a2ad46ef224b582525.php
│ │ ├── 4b2394d10663db618d28609eaebb0a6b.php