-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiri_mappings_to_html.json
1349 lines (1349 loc) · 112 KB
/
iri_mappings_to_html.json
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
{
"/co": "/documentation/index.html",
"/co/": "/documentation/index.html",
"/co/1.0.0": "/documentation/index.html",
"/co/1.1.0": "/documentation/index.html",
"/co/1.2.0": "/documentation/index.html",
"/co/1.3.0": "/documentation/index.html",
"/co/List-shape": "/documentation/shape-colist-shape.html",
"/co/ListItem-shape": "/documentation/shape-colistitem-shape.html",
"/co/firstItem-subjects-previousItem-shape": "/documentation/shape-cofirstitem-subjects-previousitem-shape.html",
"/co/firstItem-subjects-shape": "/documentation/shape-cofirstitem-subjects-shape.html",
"/co/followedBy-subjects-shape": "/documentation/shape-cofollowedby-subjects-shape.html",
"/co/index-subjects-shape": "/documentation/shape-coindex-subjects-shape.html",
"/co/item-subjects-shape": "/documentation/shape-coitem-subjects-shape.html",
"/co/itemContent-subjects-shape": "/documentation/shape-coitemcontent-subjects-shape.html",
"/co/nextItem-subjects-shape": "/documentation/shape-conextitem-subjects-shape.html",
"/co/precededBy-subjects-shape": "/documentation/shape-coprecededby-subjects-shape.html",
"/co/previousItem-subjects-shape": "/documentation/shape-copreviousitem-subjects-shape.html",
"/co/size-subjects-shape": "/documentation/shape-cosize-subjects-shape.html",
"/owl": "/documentation/index.html",
"/owl/": "/documentation/index.html",
"/owl/1.0.0": "/documentation/index.html",
"/owl/1.1.0": "/documentation/index.html",
"/owl/1.2.0": "/documentation/index.html",
"/owl/1.3.0": "/documentation/index.html",
"/owl/Axiom-shape": "/documentation/shape-owlaxiom-shape.html",
"/owl/DataOneOf-shape": "/documentation/shape-owldataoneof-shape.html",
"/owl/DatatypeProperty-shacl-constraints-shape": "/documentation/shape-owldatatypeproperty-shacl-constraints-shape.html",
"/owl/Disjointedness-AP-DP-shape": "/documentation/shape-owldisjointedness-ap-dp-shape.html",
"/owl/Disjointedness-AP-OP-shape": "/documentation/shape-owldisjointedness-ap-op-shape.html",
"/owl/Disjointedness-C-DT-shape": "/documentation/shape-owldisjointedness-c-dt-shape.html",
"/owl/Disjointedness-DP-OP-shape": "/documentation/shape-owldisjointedness-dp-op-shape.html",
"/owl/List-shape": "/documentation/shape-owllist-shape.html",
"/owl/ObjectProperty-shacl-constraints-shape": "/documentation/shape-owlobjectproperty-shacl-constraints-shape.html",
"/owl/Sequence-shape": "/documentation/shape-owlsequence-shape.html",
"/owl/disjointUnionOf-subjects-shape": "/documentation/shape-owldisjointunionof-subjects-shape.html",
"/owl/distinctMembers-subjects-shape": "/documentation/shape-owldistinctmembers-subjects-shape.html",
"/owl/hasKey-subjects-shape": "/documentation/shape-owlhaskey-subjects-shape.html",
"/owl/incompatibleWith-direct-import-shape": "/documentation/shape-owlincompatiblewith-direct-import-shape.html",
"/owl/incompatibleWith-imported-ontology-iri-shape": "/documentation/shape-owlincompatiblewith-imported-ontology-iri-shape.html",
"/owl/incompatibleWith-imported-version-iri-shape": "/documentation/shape-owlincompatiblewith-imported-version-iri-shape.html",
"/owl/intersectionOf-subjects-shape": "/documentation/shape-owlintersectionof-subjects-shape.html",
"/owl/members-subjects-shape": "/documentation/shape-owlmembers-subjects-shape.html",
"/owl/onProperties-subjects-shape": "/documentation/shape-owlonproperties-subjects-shape.html",
"/owl/oneOf-subjects-shape": "/documentation/shape-owloneof-subjects-shape.html",
"/owl/ontologyIRI-versionIRI-prerequisite-shape": "/documentation/shape-owlontologyiri-versioniri-prerequisite-shape.html",
"/owl/propertyChainAxiom-subjects-shape": "/documentation/shape-owlpropertychainaxiom-subjects-shape.html",
"/owl/rdf-first-subjects-shape": "/documentation/shape-owlrdf-first-subjects-shape.html",
"/owl/rdf-rest-subjects-shape": "/documentation/shape-owlrdf-rest-subjects-shape.html",
"/owl/unionOf-subjects-shape": "/documentation/shape-owlunionof-subjects-shape.html",
"/owl/versionIRI-multiversion-shape": "/documentation/shape-owlversioniri-multiversion-shape.html",
"/owl/versionIRI-nodeKind-shape": "/documentation/shape-owlversioniri-nodekind-shape.html",
"/owl/withRestrictions-subjects-shape": "/documentation/shape-owlwithrestrictions-subjects-shape.html",
"/uco/action": "/documentation/index.html",
"/uco/action/": "/documentation/index.html",
"/uco/action/0.9.1": "/documentation/index.html",
"/uco/action/1.0.0": "/documentation/index.html",
"/uco/action/1.1.0": "/documentation/index.html",
"/uco/action/1.2.0": "/documentation/index.html",
"/uco/action/1.3.0": "/documentation/index.html",
"/uco/action/Action": "/documentation/class-actionaction.html",
"/uco/action/Action-disjointWith-Event-shape": "/documentation/shape-actionaction-disjointwith-event-shape.html",
"/uco/action/ActionArgumentFacet": "/documentation/class-actionactionargumentfacet.html",
"/uco/action/ActionEstimationFacet": "/documentation/class-actionactionestimationfacet.html",
"/uco/action/ActionFrequencyFacet": "/documentation/class-actionactionfrequencyfacet.html",
"/uco/action/ActionLifecycle": "/documentation/class-actionactionlifecycle.html",
"/uco/action/ActionPattern": "/documentation/class-actionactionpattern.html",
"/uco/action/ArrayOfAction": "/documentation/class-actionarrayofaction.html",
"/uco/action/action": "/documentation/prop-actionaction.html",
"/uco/action/actionCount": "/documentation/prop-actionactioncount.html",
"/uco/action/actionStatus": "/documentation/prop-actionactionstatus.html",
"/uco/action/argumentName": "/documentation/prop-actionargumentname.html",
"/uco/action/endTime": "/documentation/prop-actionendtime.html",
"/uco/action/environment": "/documentation/prop-actionenvironment.html",
"/uco/action/error": "/documentation/prop-actionerror.html",
"/uco/action/estimatedCost": "/documentation/prop-actionestimatedcost.html",
"/uco/action/estimatedEfficacy": "/documentation/prop-actionestimatedefficacy.html",
"/uco/action/estimatedImpact": "/documentation/prop-actionestimatedimpact.html",
"/uco/action/instrument": "/documentation/prop-actioninstrument.html",
"/uco/action/location": "/documentation/prop-actionlocation.html",
"/uco/action/object": "/documentation/prop-actionobject.html",
"/uco/action/objective": "/documentation/prop-actionobjective.html",
"/uco/action/participant": "/documentation/prop-actionparticipant.html",
"/uco/action/performer": "/documentation/prop-actionperformer.html",
"/uco/action/phase": "/documentation/prop-actionphase.html",
"/uco/action/rate": "/documentation/prop-actionrate.html",
"/uco/action/result": "/documentation/prop-actionresult.html",
"/uco/action/scale": "/documentation/prop-actionscale.html",
"/uco/action/startTime": "/documentation/prop-actionstarttime.html",
"/uco/action/subaction": "/documentation/prop-actionsubaction.html",
"/uco/action/trend": "/documentation/prop-actiontrend.html",
"/uco/action/units": "/documentation/prop-actionunits.html",
"/uco/action/value": "/documentation/prop-actionvalue.html",
"/uco/analysis": "/documentation/index.html",
"/uco/analysis/": "/documentation/index.html",
"/uco/analysis/1.1.0": "/documentation/index.html",
"/uco/analysis/1.2.0": "/documentation/index.html",
"/uco/analysis/1.3.0": "/documentation/index.html",
"/uco/analysis/Analysis": "/documentation/class-analysisanalysis.html",
"/uco/analysis/AnalyticResult": "/documentation/class-analysisanalyticresult.html",
"/uco/analysis/AnalyticResultFacet": "/documentation/class-analysisanalyticresultfacet.html",
"/uco/analysis/ArtifactClassification": "/documentation/class-analysisartifactclassification.html",
"/uco/analysis/ArtifactClassificationResultFacet": "/documentation/class-analysisartifactclassificationresultfacet.html",
"/uco/analysis/class": "/documentation/prop-analysisclass.html",
"/uco/analysis/classification": "/documentation/prop-analysisclassification.html",
"/uco/analysis/classificationConfidence": "/documentation/prop-analysisclassificationconfidence.html",
"/uco/analysis/originatingAnalysis": "/documentation/prop-analysisoriginatinganalysis.html",
"/uco/analysis/resultContent": "/documentation/prop-analysisresultcontent.html",
"/uco/configuration": "/documentation/index.html",
"/uco/configuration/": "/documentation/index.html",
"/uco/configuration/1.0.0": "/documentation/index.html",
"/uco/configuration/1.1.0": "/documentation/index.html",
"/uco/configuration/1.2.0": "/documentation/index.html",
"/uco/configuration/1.3.0": "/documentation/index.html",
"/uco/configuration/Configuration": "/documentation/class-configurationconfiguration.html",
"/uco/configuration/ConfigurationEntry": "/documentation/class-configurationconfigurationentry.html",
"/uco/configuration/Dependency": "/documentation/class-configurationdependency.html",
"/uco/configuration/configurationEntry": "/documentation/prop-configurationconfigurationentry.html",
"/uco/configuration/dependencies": "/documentation/prop-configurationdependencies.html",
"/uco/configuration/dependencyDescription": "/documentation/prop-configurationdependencydescription.html",
"/uco/configuration/dependencyType": "/documentation/prop-configurationdependencytype.html",
"/uco/configuration/isConfigurationOf": "/documentation/prop-configurationisconfigurationof.html",
"/uco/configuration/itemDescription": "/documentation/prop-configurationitemdescription.html",
"/uco/configuration/itemName": "/documentation/prop-configurationitemname.html",
"/uco/configuration/itemObject": "/documentation/prop-configurationitemobject.html",
"/uco/configuration/itemType": "/documentation/prop-configurationitemtype.html",
"/uco/configuration/itemValue": "/documentation/prop-configurationitemvalue.html",
"/uco/configuration/usageContextAssumptions": "/documentation/prop-configurationusagecontextassumptions.html",
"/uco/configuration/usesConfiguration": "/documentation/prop-configurationusesconfiguration.html",
"/uco/core": "/documentation/index.html",
"/uco/core/": "/documentation/index.html",
"/uco/core/0.9.1": "/documentation/index.html",
"/uco/core/1.0.0": "/documentation/index.html",
"/uco/core/1.1.0": "/documentation/index.html",
"/uco/core/1.2.0": "/documentation/index.html",
"/uco/core/1.3.0": "/documentation/index.html",
"/uco/core/Annotation": "/documentation/class-coreannotation.html",
"/uco/core/Assertion": "/documentation/class-coreassertion.html",
"/uco/core/AttributedName": "/documentation/class-coreattributedname.html",
"/uco/core/Bundle": "/documentation/class-corebundle.html",
"/uco/core/Compilation": "/documentation/class-corecompilation.html",
"/uco/core/ConfidenceFacet": "/documentation/class-coreconfidencefacet.html",
"/uco/core/ContextualCompilation": "/documentation/class-corecontextualcompilation.html",
"/uco/core/ControlledVocabulary": "/documentation/class-corecontrolledvocabulary.html",
"/uco/core/EnclosingCompilation": "/documentation/class-coreenclosingcompilation.html",
"/uco/core/Event": "/documentation/class-coreevent.html",
"/uco/core/ExternalReference": "/documentation/class-coreexternalreference.html",
"/uco/core/Facet": "/documentation/class-corefacet.html",
"/uco/core/Grouping": "/documentation/class-coregrouping.html",
"/uco/core/IdentityAbstraction": "/documentation/class-coreidentityabstraction.html",
"/uco/core/Item": "/documentation/class-coreitem.html",
"/uco/core/MarkingDefinitionAbstraction": "/documentation/class-coremarkingdefinitionabstraction.html",
"/uco/core/ModusOperandi": "/documentation/class-coremodusoperandi.html",
"/uco/core/Relationship": "/documentation/class-corerelationship.html",
"/uco/core/UcoInherentCharacterizationThing": "/documentation/class-coreucoinherentcharacterizationthing.html",
"/uco/core/UcoObject": "/documentation/class-coreucoobject.html",
"/uco/core/UcoThing": "/documentation/class-coreucothing.html",
"/uco/core/UcoThing-identifier-regex-shape": "/documentation/shape-coreucothing-identifier-regex-shape.html",
"/uco/core/confidence": "/documentation/prop-coreconfidence.html",
"/uco/core/constrainingVocabularyName": "/documentation/prop-coreconstrainingvocabularyname.html",
"/uco/core/constrainingVocabularyReference": "/documentation/prop-coreconstrainingvocabularyreference.html",
"/uco/core/context": "/documentation/prop-corecontext.html",
"/uco/core/createdBy": "/documentation/prop-corecreatedby.html",
"/uco/core/definingContext": "/documentation/prop-coredefiningcontext.html",
"/uco/core/description": "/documentation/prop-coredescription.html",
"/uco/core/endTime": "/documentation/prop-coreendtime.html",
"/uco/core/eventAttribute": "/documentation/prop-coreeventattribute.html",
"/uco/core/eventContext": "/documentation/prop-coreeventcontext.html",
"/uco/core/eventType": "/documentation/prop-coreeventtype.html",
"/uco/core/externalIdentifier": "/documentation/prop-coreexternalidentifier.html",
"/uco/core/externalReference": "/documentation/prop-coreexternalreference.html",
"/uco/core/hasFacet": "/documentation/prop-corehasfacet.html",
"/uco/core/hasFacet-shape": "/documentation/shape-corehasfacet-shape.html",
"/uco/core/isDirectional": "/documentation/prop-coreisdirectional.html",
"/uco/core/kindOfRelationship": "/documentation/prop-corekindofrelationship.html",
"/uco/core/modifiedTime": "/documentation/prop-coremodifiedtime.html",
"/uco/core/name": "/documentation/prop-corename.html",
"/uco/core/namingAuthority": "/documentation/prop-corenamingauthority.html",
"/uco/core/object": "/documentation/prop-coreobject.html",
"/uco/core/objectCreatedTime": "/documentation/prop-coreobjectcreatedtime.html",
"/uco/core/objectMarking": "/documentation/prop-coreobjectmarking.html",
"/uco/core/referenceURL": "/documentation/prop-corereferenceurl.html",
"/uco/core/source": "/documentation/prop-coresource.html",
"/uco/core/specVersion": "/documentation/prop-corespecversion.html",
"/uco/core/startTime": "/documentation/prop-corestarttime.html",
"/uco/core/statement": "/documentation/prop-corestatement.html",
"/uco/core/tag": "/documentation/prop-coretag.html",
"/uco/core/target": "/documentation/prop-coretarget.html",
"/uco/core/value": "/documentation/prop-corevalue.html",
"/uco/identity": "/documentation/index.html",
"/uco/identity/": "/documentation/index.html",
"/uco/identity/0.9.1": "/documentation/index.html",
"/uco/identity/1.0.0": "/documentation/index.html",
"/uco/identity/1.1.0": "/documentation/index.html",
"/uco/identity/1.2.0": "/documentation/index.html",
"/uco/identity/1.3.0": "/documentation/index.html",
"/uco/identity/AddressFacet": "/documentation/class-identityaddressfacet.html",
"/uco/identity/AffiliationFacet": "/documentation/class-identityaffiliationfacet.html",
"/uco/identity/BirthInformationFacet": "/documentation/class-identitybirthinformationfacet.html",
"/uco/identity/CountryOfResidenceFacet": "/documentation/class-identitycountryofresidencefacet.html",
"/uco/identity/EventsFacet": "/documentation/class-identityeventsfacet.html",
"/uco/identity/IdentifierFacet": "/documentation/class-identityidentifierfacet.html",
"/uco/identity/Identity": "/documentation/class-identityidentity.html",
"/uco/identity/IdentityFacet": "/documentation/class-identityidentityfacet.html",
"/uco/identity/LanguagesFacet": "/documentation/class-identitylanguagesfacet.html",
"/uco/identity/NationalityFacet": "/documentation/class-identitynationalityfacet.html",
"/uco/identity/OccupationFacet": "/documentation/class-identityoccupationfacet.html",
"/uco/identity/Organization": "/documentation/class-identityorganization.html",
"/uco/identity/OrganizationDetailsFacet": "/documentation/class-identityorganizationdetailsfacet.html",
"/uco/identity/Person": "/documentation/class-identityperson.html",
"/uco/identity/PersonalDetailsFacet": "/documentation/class-identitypersonaldetailsfacet.html",
"/uco/identity/PhysicalInfoFacet": "/documentation/class-identityphysicalinfofacet.html",
"/uco/identity/QualificationFacet": "/documentation/class-identityqualificationfacet.html",
"/uco/identity/RelatedIdentityFacet": "/documentation/class-identityrelatedidentityfacet.html",
"/uco/identity/SimpleNameFacet": "/documentation/class-identitysimplenamefacet.html",
"/uco/identity/VisaFacet": "/documentation/class-identityvisafacet.html",
"/uco/identity/address": "/documentation/prop-identityaddress.html",
"/uco/identity/birthdate": "/documentation/prop-identitybirthdate.html",
"/uco/identity/familyName": "/documentation/prop-identityfamilyname.html",
"/uco/identity/givenName": "/documentation/prop-identitygivenname.html",
"/uco/identity/honorificPrefix": "/documentation/prop-identityhonorificprefix.html",
"/uco/identity/honorificSuffix": "/documentation/prop-identityhonorificsuffix.html",
"/uco/location": "/documentation/index.html",
"/uco/location/": "/documentation/index.html",
"/uco/location/0.9.1": "/documentation/index.html",
"/uco/location/1.0.0": "/documentation/index.html",
"/uco/location/1.1.0": "/documentation/index.html",
"/uco/location/1.2.0": "/documentation/index.html",
"/uco/location/1.3.0": "/documentation/index.html",
"/uco/location/GPSCoordinatesFacet": "/documentation/class-locationgpscoordinatesfacet.html",
"/uco/location/LatLongCoordinatesFacet": "/documentation/class-locationlatlongcoordinatesfacet.html",
"/uco/location/Location": "/documentation/class-locationlocation.html",
"/uco/location/SimpleAddressFacet": "/documentation/class-locationsimpleaddressfacet.html",
"/uco/location/addressType": "/documentation/prop-locationaddresstype.html",
"/uco/location/altitude": "/documentation/prop-locationaltitude.html",
"/uco/location/country": "/documentation/prop-locationcountry.html",
"/uco/location/hdop": "/documentation/prop-locationhdop.html",
"/uco/location/latitude": "/documentation/prop-locationlatitude.html",
"/uco/location/locality": "/documentation/prop-locationlocality.html",
"/uco/location/longitude": "/documentation/prop-locationlongitude.html",
"/uco/location/pdop": "/documentation/prop-locationpdop.html",
"/uco/location/postalCode": "/documentation/prop-locationpostalcode.html",
"/uco/location/region": "/documentation/prop-locationregion.html",
"/uco/location/street": "/documentation/prop-locationstreet.html",
"/uco/location/tdop": "/documentation/prop-locationtdop.html",
"/uco/location/vdop": "/documentation/prop-locationvdop.html",
"/uco/marking": "/documentation/index.html",
"/uco/marking/": "/documentation/index.html",
"/uco/marking/0.9.1": "/documentation/index.html",
"/uco/marking/1.0.0": "/documentation/index.html",
"/uco/marking/1.1.0": "/documentation/index.html",
"/uco/marking/1.2.0": "/documentation/index.html",
"/uco/marking/1.3.0": "/documentation/index.html",
"/uco/marking/GranularMarking": "/documentation/class-markinggranularmarking.html",
"/uco/marking/LicenseMarking": "/documentation/class-markinglicensemarking.html",
"/uco/marking/MarkingDefinition": "/documentation/class-markingmarkingdefinition.html",
"/uco/marking/MarkingModel": "/documentation/class-markingmarkingmodel.html",
"/uco/marking/ReleaseToMarking": "/documentation/class-markingreleasetomarking.html",
"/uco/marking/StatementMarking": "/documentation/class-markingstatementmarking.html",
"/uco/marking/TermsOfUseMarking": "/documentation/class-markingtermsofusemarking.html",
"/uco/marking/authorizedIdentities": "/documentation/prop-markingauthorizedidentities.html",
"/uco/marking/contentSelectors": "/documentation/prop-markingcontentselectors.html",
"/uco/marking/definition": "/documentation/prop-markingdefinition.html",
"/uco/marking/definitionType": "/documentation/prop-markingdefinitiontype.html",
"/uco/marking/license": "/documentation/prop-markinglicense.html",
"/uco/marking/marking": "/documentation/prop-markingmarking.html",
"/uco/marking/statement": "/documentation/prop-markingstatement.html",
"/uco/marking/termsOfUse": "/documentation/prop-markingtermsofuse.html",
"/uco/observable": "/documentation/index.html",
"/uco/observable/": "/documentation/index.html",
"/uco/observable/0.9.1": "/documentation/index.html",
"/uco/observable/1.0.0": "/documentation/index.html",
"/uco/observable/1.1.0": "/documentation/index.html",
"/uco/observable/1.2.0": "/documentation/index.html",
"/uco/observable/1.3.0": "/documentation/index.html",
"/uco/observable/API": "/documentation/class-observableapi.html",
"/uco/observable/ARPCache": "/documentation/class-observablearpcache.html",
"/uco/observable/ARPCacheEntry": "/documentation/class-observablearpcacheentry.html",
"/uco/observable/Account": "/documentation/class-observableaccount.html",
"/uco/observable/AccountAuthenticationFacet": "/documentation/class-observableaccountauthenticationfacet.html",
"/uco/observable/AccountFacet": "/documentation/class-observableaccountfacet.html",
"/uco/observable/Adaptor": "/documentation/class-observableadaptor.html",
"/uco/observable/Address": "/documentation/class-observableaddress.html",
"/uco/observable/AlternateDataStream": "/documentation/class-observablealternatedatastream.html",
"/uco/observable/AlternateDataStreamFacet": "/documentation/class-observablealternatedatastreamfacet.html",
"/uco/observable/AndroidDevice": "/documentation/class-observableandroiddevice.html",
"/uco/observable/AndroidDeviceFacet": "/documentation/class-observableandroiddevicefacet.html",
"/uco/observable/AndroidPhone": "/documentation/class-observableandroidphone.html",
"/uco/observable/AntennaFacet": "/documentation/class-observableantennafacet.html",
"/uco/observable/AppleDevice": "/documentation/class-observableappledevice.html",
"/uco/observable/Appliance": "/documentation/class-observableappliance.html",
"/uco/observable/Application": "/documentation/class-observableapplication.html",
"/uco/observable/ApplicationAccount": "/documentation/class-observableapplicationaccount.html",
"/uco/observable/ApplicationAccountFacet": "/documentation/class-observableapplicationaccountfacet.html",
"/uco/observable/ApplicationFacet": "/documentation/class-observableapplicationfacet.html",
"/uco/observable/ApplicationVersion": "/documentation/class-observableapplicationversion.html",
"/uco/observable/ArchiveFile": "/documentation/class-observablearchivefile.html",
"/uco/observable/ArchiveFileFacet": "/documentation/class-observablearchivefilefacet.html",
"/uco/observable/Audio": "/documentation/class-observableaudio.html",
"/uco/observable/AudioFacet": "/documentation/class-observableaudiofacet.html",
"/uco/observable/AutonomousSystem": "/documentation/class-observableautonomoussystem.html",
"/uco/observable/AutonomousSystemFacet": "/documentation/class-observableautonomoussystemfacet.html",
"/uco/observable/BlackberryPhone": "/documentation/class-observableblackberryphone.html",
"/uco/observable/BlockDeviceNode": "/documentation/class-observableblockdevicenode.html",
"/uco/observable/BluetoothAddress": "/documentation/class-observablebluetoothaddress.html",
"/uco/observable/BluetoothAddressFacet": "/documentation/class-observablebluetoothaddressfacet.html",
"/uco/observable/BotConfiguration": "/documentation/class-observablebotconfiguration.html",
"/uco/observable/BrowserBookmark": "/documentation/class-observablebrowserbookmark.html",
"/uco/observable/BrowserBookmarkFacet": "/documentation/class-observablebrowserbookmarkfacet.html",
"/uco/observable/BrowserCookie": "/documentation/class-observablebrowsercookie.html",
"/uco/observable/BrowserCookieFacet": "/documentation/class-observablebrowsercookiefacet.html",
"/uco/observable/Calendar": "/documentation/class-observablecalendar.html",
"/uco/observable/CalendarEntry": "/documentation/class-observablecalendarentry.html",
"/uco/observable/CalendarEntryFacet": "/documentation/class-observablecalendarentryfacet.html",
"/uco/observable/CalendarFacet": "/documentation/class-observablecalendarfacet.html",
"/uco/observable/Call": "/documentation/class-observablecall.html",
"/uco/observable/CallFacet": "/documentation/class-observablecallfacet.html",
"/uco/observable/CapturedTelecommunicationsInformation": "/documentation/class-observablecapturedtelecommunicationsinformation.html",
"/uco/observable/CapturedTelecommunicationsInformationFacet": "/documentation/class-observablecapturedtelecommunicationsinformationfacet.html",
"/uco/observable/CellSite": "/documentation/class-observablecellsite.html",
"/uco/observable/CellSiteFacet": "/documentation/class-observablecellsitefacet.html",
"/uco/observable/CharacterDeviceNode": "/documentation/class-observablecharacterdevicenode.html",
"/uco/observable/Code": "/documentation/class-observablecode.html",
"/uco/observable/CompressedStreamFacet": "/documentation/class-observablecompressedstreamfacet.html",
"/uco/observable/Computer": "/documentation/class-observablecomputer.html",
"/uco/observable/ComputerSpecification": "/documentation/class-observablecomputerspecification.html",
"/uco/observable/ComputerSpecificationFacet": "/documentation/class-observablecomputerspecificationfacet.html",
"/uco/observable/ConfiguredSoftware": "/documentation/class-observableconfiguredsoftware.html",
"/uco/observable/Contact": "/documentation/class-observablecontact.html",
"/uco/observable/ContactAddress": "/documentation/class-observablecontactaddress.html",
"/uco/observable/ContactAffiliation": "/documentation/class-observablecontactaffiliation.html",
"/uco/observable/ContactEmail": "/documentation/class-observablecontactemail.html",
"/uco/observable/ContactFacet": "/documentation/class-observablecontactfacet.html",
"/uco/observable/ContactList": "/documentation/class-observablecontactlist.html",
"/uco/observable/ContactListFacet": "/documentation/class-observablecontactlistfacet.html",
"/uco/observable/ContactMessaging": "/documentation/class-observablecontactmessaging.html",
"/uco/observable/ContactPhone": "/documentation/class-observablecontactphone.html",
"/uco/observable/ContactProfile": "/documentation/class-observablecontactprofile.html",
"/uco/observable/ContactSIP": "/documentation/class-observablecontactsip.html",
"/uco/observable/ContactURL": "/documentation/class-observablecontacturl.html",
"/uco/observable/ContentData": "/documentation/class-observablecontentdata.html",
"/uco/observable/ContentDataFacet": "/documentation/class-observablecontentdatafacet.html",
"/uco/observable/CookieHistory": "/documentation/class-observablecookiehistory.html",
"/uco/observable/Credential": "/documentation/class-observablecredential.html",
"/uco/observable/CredentialDump": "/documentation/class-observablecredentialdump.html",
"/uco/observable/DNSCache": "/documentation/class-observablednscache.html",
"/uco/observable/DNSRecord": "/documentation/class-observablednsrecord.html",
"/uco/observable/DataRangeFacet": "/documentation/class-observabledatarangefacet.html",
"/uco/observable/DefinedEffectFacet": "/documentation/class-observabledefinedeffectfacet.html",
"/uco/observable/Device": "/documentation/class-observabledevice.html",
"/uco/observable/DeviceFacet": "/documentation/class-observabledevicefacet.html",
"/uco/observable/DigitalAccount": "/documentation/class-observabledigitalaccount.html",
"/uco/observable/DigitalAccountFacet": "/documentation/class-observabledigitalaccountfacet.html",
"/uco/observable/DigitalAddress": "/documentation/class-observabledigitaladdress.html",
"/uco/observable/DigitalAddressFacet": "/documentation/class-observabledigitaladdressfacet.html",
"/uco/observable/DigitalCamera": "/documentation/class-observabledigitalcamera.html",
"/uco/observable/DigitalSignatureInfo": "/documentation/class-observabledigitalsignatureinfo.html",
"/uco/observable/DigitalSignatureInfoFacet": "/documentation/class-observabledigitalsignatureinfofacet.html",
"/uco/observable/Directory": "/documentation/class-observabledirectory.html",
"/uco/observable/Disk": "/documentation/class-observabledisk.html",
"/uco/observable/DiskFacet": "/documentation/class-observablediskfacet.html",
"/uco/observable/DiskPartition": "/documentation/class-observablediskpartition.html",
"/uco/observable/DiskPartitionFacet": "/documentation/class-observablediskpartitionfacet.html",
"/uco/observable/DomainName": "/documentation/class-observabledomainname.html",
"/uco/observable/DomainNameFacet": "/documentation/class-observabledomainnamefacet.html",
"/uco/observable/Drone": "/documentation/class-observabledrone.html",
"/uco/observable/ESN": "/documentation/prop-observableesn.html",
"/uco/observable/EXIFFacet": "/documentation/class-observableexiffacet.html",
"/uco/observable/EmailAccount": "/documentation/class-observableemailaccount.html",
"/uco/observable/EmailAccountFacet": "/documentation/class-observableemailaccountfacet.html",
"/uco/observable/EmailAddress": "/documentation/class-observableemailaddress.html",
"/uco/observable/EmailAddressFacet": "/documentation/class-observableemailaddressfacet.html",
"/uco/observable/EmailMessage": "/documentation/class-observableemailmessage.html",
"/uco/observable/EmailMessageFacet": "/documentation/class-observableemailmessagefacet.html",
"/uco/observable/EmbeddedDevice": "/documentation/class-observableembeddeddevice.html",
"/uco/observable/EncodedStreamFacet": "/documentation/class-observableencodedstreamfacet.html",
"/uco/observable/EncryptedStreamFacet": "/documentation/class-observableencryptedstreamfacet.html",
"/uco/observable/EnvironmentVariable": "/documentation/class-observableenvironmentvariable.html",
"/uco/observable/EventLog": "/documentation/class-observableeventlog.html",
"/uco/observable/EventRecord": "/documentation/class-observableeventrecord.html",
"/uco/observable/EventRecordFacet": "/documentation/class-observableeventrecordfacet.html",
"/uco/observable/ExtInodeFacet": "/documentation/class-observableextinodefacet.html",
"/uco/observable/ExtractedString": "/documentation/class-observableextractedstring.html",
"/uco/observable/ExtractedStringsFacet": "/documentation/class-observableextractedstringsfacet.html",
"/uco/observable/File": "/documentation/class-observablefile.html",
"/uco/observable/File-disjointWith-URL-shape": "/documentation/shape-observablefile-disjointwith-url-shape.html",
"/uco/observable/FileFacet": "/documentation/class-observablefilefacet.html",
"/uco/observable/FilePermissionsFacet": "/documentation/class-observablefilepermissionsfacet.html",
"/uco/observable/FileSystem": "/documentation/class-observablefilesystem.html",
"/uco/observable/FileSystemFacet": "/documentation/class-observablefilesystemfacet.html",
"/uco/observable/FileSystemObject": "/documentation/class-observablefilesystemobject.html",
"/uco/observable/ForumPost": "/documentation/class-observableforumpost.html",
"/uco/observable/ForumPrivateMessage": "/documentation/class-observableforumprivatemessage.html",
"/uco/observable/FragmentFacet": "/documentation/class-observablefragmentfacet.html",
"/uco/observable/GUI": "/documentation/class-observablegui.html",
"/uco/observable/GamingConsole": "/documentation/class-observablegamingconsole.html",
"/uco/observable/GenericObservableObject": "/documentation/class-observablegenericobservableobject.html",
"/uco/observable/GeoLocationEntry": "/documentation/class-observablegeolocationentry.html",
"/uco/observable/GeoLocationEntryFacet": "/documentation/class-observablegeolocationentryfacet.html",
"/uco/observable/GeoLocationLog": "/documentation/class-observablegeolocationlog.html",
"/uco/observable/GeoLocationLogFacet": "/documentation/class-observablegeolocationlogfacet.html",
"/uco/observable/GeoLocationTrack": "/documentation/class-observablegeolocationtrack.html",
"/uco/observable/GeoLocationTrackFacet": "/documentation/class-observablegeolocationtrackfacet.html",
"/uco/observable/GlobalFlagType": "/documentation/class-observableglobalflagtype.html",
"/uco/observable/HTTPConnection": "/documentation/class-observablehttpconnection.html",
"/uco/observable/HTTPConnectionFacet": "/documentation/class-observablehttpconnectionfacet.html",
"/uco/observable/Hostname": "/documentation/class-observablehostname.html",
"/uco/observable/ICCID": "/documentation/prop-observableiccid.html",
"/uco/observable/ICMPConnection": "/documentation/class-observableicmpconnection.html",
"/uco/observable/ICMPConnectionFacet": "/documentation/class-observableicmpconnectionfacet.html",
"/uco/observable/IComHandlerActionType": "/documentation/class-observableicomhandleractiontype.html",
"/uco/observable/IExecActionType": "/documentation/class-observableiexecactiontype.html",
"/uco/observable/IMEI": "/documentation/prop-observableimei.html",
"/uco/observable/IMSI": "/documentation/prop-observableimsi.html",
"/uco/observable/IPAddress": "/documentation/class-observableipaddress.html",
"/uco/observable/IPAddressFacet": "/documentation/class-observableipaddressfacet.html",
"/uco/observable/IPNetmask": "/documentation/class-observableipnetmask.html",
"/uco/observable/IPhone": "/documentation/class-observableiphone.html",
"/uco/observable/IPv4Address": "/documentation/class-observableipv4address.html",
"/uco/observable/IPv4AddressFacet": "/documentation/class-observableipv4addressfacet.html",
"/uco/observable/IPv6Address": "/documentation/class-observableipv6address.html",
"/uco/observable/IPv6AddressFacet": "/documentation/class-observableipv6addressfacet.html",
"/uco/observable/IShowMessageActionType": "/documentation/class-observableishowmessageactiontype.html",
"/uco/observable/Image": "/documentation/class-observableimage.html",
"/uco/observable/ImageFacet": "/documentation/class-observableimagefacet.html",
"/uco/observable/InstantMessagingAddress": "/documentation/class-observableinstantmessagingaddress.html",
"/uco/observable/InstantMessagingAddressFacet": "/documentation/class-observableinstantmessagingaddressfacet.html",
"/uco/observable/Junction": "/documentation/class-observablejunction.html",
"/uco/observable/Laptop": "/documentation/class-observablelaptop.html",
"/uco/observable/Library": "/documentation/class-observablelibrary.html",
"/uco/observable/LibraryFacet": "/documentation/class-observablelibraryfacet.html",
"/uco/observable/MACAddress": "/documentation/class-observablemacaddress.html",
"/uco/observable/MACAddressFacet": "/documentation/class-observablemacaddressfacet.html",
"/uco/observable/MSISDN": "/documentation/prop-observablemsisdn.html",
"/uco/observable/MSISDNType": "/documentation/prop-observablemsisdntype.html",
"/uco/observable/Memory": "/documentation/class-observablememory.html",
"/uco/observable/MemoryFacet": "/documentation/class-observablememoryfacet.html",
"/uco/observable/Message": "/documentation/class-observablemessage.html",
"/uco/observable/MessageFacet": "/documentation/class-observablemessagefacet.html",
"/uco/observable/MessageThread": "/documentation/class-observablemessagethread.html",
"/uco/observable/MessageThreadFacet": "/documentation/class-observablemessagethreadfacet.html",
"/uco/observable/MftRecordFacet": "/documentation/class-observablemftrecordfacet.html",
"/uco/observable/MimePartType": "/documentation/class-observablemimeparttype.html",
"/uco/observable/MobileAccount": "/documentation/class-observablemobileaccount.html",
"/uco/observable/MobileAccountFacet": "/documentation/class-observablemobileaccountfacet.html",
"/uco/observable/MobileDevice": "/documentation/class-observablemobiledevice.html",
"/uco/observable/MobileDeviceFacet": "/documentation/class-observablemobiledevicefacet.html",
"/uco/observable/MobilePhone": "/documentation/class-observablemobilephone.html",
"/uco/observable/Mutex": "/documentation/class-observablemutex.html",
"/uco/observable/MutexFacet": "/documentation/class-observablemutexfacet.html",
"/uco/observable/NTFSFile": "/documentation/class-observablentfsfile.html",
"/uco/observable/NTFSFileFacet": "/documentation/class-observablentfsfilefacet.html",
"/uco/observable/NTFSFilePermissionsFacet": "/documentation/class-observablentfsfilepermissionsfacet.html",
"/uco/observable/NamedPipe": "/documentation/class-observablenamedpipe.html",
"/uco/observable/NetworkAppliance": "/documentation/class-observablenetworkappliance.html",
"/uco/observable/NetworkConnection": "/documentation/class-observablenetworkconnection.html",
"/uco/observable/NetworkConnectionFacet": "/documentation/class-observablenetworkconnectionfacet.html",
"/uco/observable/NetworkFlow": "/documentation/class-observablenetworkflow.html",
"/uco/observable/NetworkFlowFacet": "/documentation/class-observablenetworkflowfacet.html",
"/uco/observable/NetworkInterface": "/documentation/class-observablenetworkinterface.html",
"/uco/observable/NetworkInterfaceFacet": "/documentation/class-observablenetworkinterfacefacet.html",
"/uco/observable/NetworkProtocol": "/documentation/class-observablenetworkprotocol.html",
"/uco/observable/NetworkRoute": "/documentation/class-observablenetworkroute.html",
"/uco/observable/NetworkSubnet": "/documentation/class-observablenetworksubnet.html",
"/uco/observable/Note": "/documentation/class-observablenote.html",
"/uco/observable/NoteFacet": "/documentation/class-observablenotefacet.html",
"/uco/observable/Observable": "/documentation/class-observableobservable.html",
"/uco/observable/ObservableAction": "/documentation/class-observableobservableaction.html",
"/uco/observable/ObservableObject": "/documentation/class-observableobservableobject.html",
"/uco/observable/ObservablePattern": "/documentation/class-observableobservablepattern.html",
"/uco/observable/ObservableRelationship": "/documentation/class-observableobservablerelationship.html",
"/uco/observable/Observation": "/documentation/class-observableobservation.html",
"/uco/observable/OnlineService": "/documentation/class-observableonlineservice.html",
"/uco/observable/OnlineServiceFacet": "/documentation/class-observableonlineservicefacet.html",
"/uco/observable/OperatingSystem": "/documentation/class-observableoperatingsystem.html",
"/uco/observable/OperatingSystemFacet": "/documentation/class-observableoperatingsystemfacet.html",
"/uco/observable/PDFFile": "/documentation/class-observablepdffile.html",
"/uco/observable/PDFFileFacet": "/documentation/class-observablepdffilefacet.html",
"/uco/observable/PIN": "/documentation/prop-observablepin.html",
"/uco/observable/PUK": "/documentation/prop-observablepuk.html",
"/uco/observable/PathRelationFacet": "/documentation/class-observablepathrelationfacet.html",
"/uco/observable/PaymentCard": "/documentation/class-observablepaymentcard.html",
"/uco/observable/PhoneAccount": "/documentation/class-observablephoneaccount.html",
"/uco/observable/PhoneAccountFacet": "/documentation/class-observablephoneaccountfacet.html",
"/uco/observable/Pipe": "/documentation/class-observablepipe.html",
"/uco/observable/Post": "/documentation/class-observablepost.html",
"/uco/observable/Process": "/documentation/class-observableprocess.html",
"/uco/observable/ProcessFacet": "/documentation/class-observableprocessfacet.html",
"/uco/observable/ProcessThread": "/documentation/class-observableprocessthread.html",
"/uco/observable/Profile": "/documentation/class-observableprofile.html",
"/uco/observable/ProfileFacet": "/documentation/class-observableprofilefacet.html",
"/uco/observable/PropertiesEnumeratedEffectFacet": "/documentation/class-observablepropertiesenumeratedeffectfacet.html",
"/uco/observable/PropertyReadEffectFacet": "/documentation/class-observablepropertyreadeffectfacet.html",
"/uco/observable/ProtocolConverter": "/documentation/class-observableprotocolconverter.html",
"/uco/observable/RasterPicture": "/documentation/class-observablerasterpicture.html",
"/uco/observable/RasterPictureFacet": "/documentation/class-observablerasterpicturefacet.html",
"/uco/observable/RecoveredObject": "/documentation/class-observablerecoveredobject.html",
"/uco/observable/RecoveredObjectFacet": "/documentation/class-observablerecoveredobjectfacet.html",
"/uco/observable/ReparsePoint": "/documentation/class-observablereparsepoint.html",
"/uco/observable/SIMCard": "/documentation/class-observablesimcard.html",
"/uco/observable/SIMCardFacet": "/documentation/class-observablesimcardfacet.html",
"/uco/observable/SIMForm": "/documentation/prop-observablesimform.html",
"/uco/observable/SIMType": "/documentation/prop-observablesimtype.html",
"/uco/observable/SIPAddress": "/documentation/class-observablesipaddress.html",
"/uco/observable/SIPAddressFacet": "/documentation/class-observablesipaddressfacet.html",
"/uco/observable/SMSMessage": "/documentation/class-observablesmsmessage.html",
"/uco/observable/SMSMessageFacet": "/documentation/class-observablesmsmessagefacet.html",
"/uco/observable/SQLiteBlob": "/documentation/class-observablesqliteblob.html",
"/uco/observable/SQLiteBlobFacet": "/documentation/class-observablesqliteblobfacet.html",
"/uco/observable/SecurityAppliance": "/documentation/class-observablesecurityappliance.html",
"/uco/observable/Semaphore": "/documentation/class-observablesemaphore.html",
"/uco/observable/SendControlCodeEffectFacet": "/documentation/class-observablesendcontrolcodeeffectfacet.html",
"/uco/observable/Server": "/documentation/class-observableserver.html",
"/uco/observable/ShopListing": "/documentation/class-observableshoplisting.html",
"/uco/observable/SmartDevice": "/documentation/class-observablesmartdevice.html",
"/uco/observable/SmartPhone": "/documentation/class-observablesmartphone.html",
"/uco/observable/Snapshot": "/documentation/class-observablesnapshot.html",
"/uco/observable/Socket": "/documentation/class-observablesocket.html",
"/uco/observable/SocketAddress": "/documentation/class-observablesocketaddress.html",
"/uco/observable/Software": "/documentation/class-observablesoftware.html",
"/uco/observable/SoftwareFacet": "/documentation/class-observablesoftwarefacet.html",
"/uco/observable/StateChangeEffectFacet": "/documentation/class-observablestatechangeeffectfacet.html",
"/uco/observable/StorageMedium": "/documentation/class-observablestoragemedium.html",
"/uco/observable/StorageMediumFacet": "/documentation/class-observablestoragemediumfacet.html",
"/uco/observable/SymbolicLink": "/documentation/class-observablesymboliclink.html",
"/uco/observable/SymbolicLinkFacet": "/documentation/class-observablesymboliclinkfacet.html",
"/uco/observable/TCPConnection": "/documentation/class-observabletcpconnection.html",
"/uco/observable/TCPConnectionFacet": "/documentation/class-observabletcpconnectionfacet.html",
"/uco/observable/TableField": "/documentation/class-observabletablefield.html",
"/uco/observable/TableFieldFacet": "/documentation/class-observabletablefieldfacet.html",
"/uco/observable/Tablet": "/documentation/class-observabletablet.html",
"/uco/observable/TaskActionType": "/documentation/class-observabletaskactiontype.html",
"/uco/observable/TriggerType": "/documentation/class-observabletriggertype.html",
"/uco/observable/Tweet": "/documentation/class-observabletweet.html",
"/uco/observable/TwitterProfileFacet": "/documentation/class-observabletwitterprofilefacet.html",
"/uco/observable/UNIXAccount": "/documentation/class-observableunixaccount.html",
"/uco/observable/UNIXAccountFacet": "/documentation/class-observableunixaccountfacet.html",
"/uco/observable/UNIXFile": "/documentation/class-observableunixfile.html",
"/uco/observable/UNIXFilePermissionsFacet": "/documentation/class-observableunixfilepermissionsfacet.html",
"/uco/observable/UNIXProcess": "/documentation/class-observableunixprocess.html",
"/uco/observable/UNIXProcessFacet": "/documentation/class-observableunixprocessfacet.html",
"/uco/observable/UNIXVolumeFacet": "/documentation/class-observableunixvolumefacet.html",
"/uco/observable/URL": "/documentation/class-observableurl.html",
"/uco/observable/URLFacet": "/documentation/class-observableurlfacet.html",
"/uco/observable/URLHistory": "/documentation/class-observableurlhistory.html",
"/uco/observable/URLHistoryEntry": "/documentation/class-observableurlhistoryentry.html",
"/uco/observable/URLHistoryFacet": "/documentation/class-observableurlhistoryfacet.html",
"/uco/observable/URLVisit": "/documentation/class-observableurlvisit.html",
"/uco/observable/URLVisitFacet": "/documentation/class-observableurlvisitfacet.html",
"/uco/observable/UserAccount": "/documentation/class-observableuseraccount.html",
"/uco/observable/UserAccountFacet": "/documentation/class-observableuseraccountfacet.html",
"/uco/observable/UserSession": "/documentation/class-observableusersession.html",
"/uco/observable/UserSessionFacet": "/documentation/class-observableusersessionfacet.html",
"/uco/observable/ValuesEnumeratedEffectFacet": "/documentation/class-observablevaluesenumeratedeffectfacet.html",
"/uco/observable/Volume": "/documentation/class-observablevolume.html",
"/uco/observable/VolumeFacet": "/documentation/class-observablevolumefacet.html",
"/uco/observable/WearableDevice": "/documentation/class-observablewearabledevice.html",
"/uco/observable/WebPage": "/documentation/class-observablewebpage.html",
"/uco/observable/WhoIs": "/documentation/class-observablewhois.html",
"/uco/observable/WhoIsFacet": "/documentation/class-observablewhoisfacet.html",
"/uco/observable/WhoisContactFacet": "/documentation/class-observablewhoiscontactfacet.html",
"/uco/observable/WhoisRegistrarInfoType": "/documentation/class-observablewhoisregistrarinfotype.html",
"/uco/observable/WifiAddress": "/documentation/class-observablewifiaddress.html",
"/uco/observable/WifiAddressFacet": "/documentation/class-observablewifiaddressfacet.html",
"/uco/observable/Wiki": "/documentation/class-observablewiki.html",
"/uco/observable/WikiArticle": "/documentation/class-observablewikiarticle.html",
"/uco/observable/WindowsAccount": "/documentation/class-observablewindowsaccount.html",
"/uco/observable/WindowsAccountFacet": "/documentation/class-observablewindowsaccountfacet.html",
"/uco/observable/WindowsActiveDirectoryAccount": "/documentation/class-observablewindowsactivedirectoryaccount.html",
"/uco/observable/WindowsActiveDirectoryAccountFacet": "/documentation/class-observablewindowsactivedirectoryaccountfacet.html",
"/uco/observable/WindowsComputerSpecification": "/documentation/class-observablewindowscomputerspecification.html",
"/uco/observable/WindowsComputerSpecificationFacet": "/documentation/class-observablewindowscomputerspecificationfacet.html",
"/uco/observable/WindowsCriticalSection": "/documentation/class-observablewindowscriticalsection.html",
"/uco/observable/WindowsEvent": "/documentation/class-observablewindowsevent.html",
"/uco/observable/WindowsFilemapping": "/documentation/class-observablewindowsfilemapping.html",
"/uco/observable/WindowsHandle": "/documentation/class-observablewindowshandle.html",
"/uco/observable/WindowsHook": "/documentation/class-observablewindowshook.html",
"/uco/observable/WindowsMailslot": "/documentation/class-observablewindowsmailslot.html",
"/uco/observable/WindowsNetworkShare": "/documentation/class-observablewindowsnetworkshare.html",
"/uco/observable/WindowsPEBinaryFile": "/documentation/class-observablewindowspebinaryfile.html",
"/uco/observable/WindowsPEBinaryFileFacet": "/documentation/class-observablewindowspebinaryfilefacet.html",
"/uco/observable/WindowsPEFileHeader": "/documentation/class-observablewindowspefileheader.html",
"/uco/observable/WindowsPEOptionalHeader": "/documentation/class-observablewindowspeoptionalheader.html",
"/uco/observable/WindowsPESection": "/documentation/class-observablewindowspesection.html",
"/uco/observable/WindowsPrefetch": "/documentation/class-observablewindowsprefetch.html",
"/uco/observable/WindowsPrefetchFacet": "/documentation/class-observablewindowsprefetchfacet.html",
"/uco/observable/WindowsProcess": "/documentation/class-observablewindowsprocess.html",
"/uco/observable/WindowsProcessFacet": "/documentation/class-observablewindowsprocessfacet.html",
"/uco/observable/WindowsRegistryHive": "/documentation/class-observablewindowsregistryhive.html",
"/uco/observable/WindowsRegistryHiveFacet": "/documentation/class-observablewindowsregistryhivefacet.html",
"/uco/observable/WindowsRegistryKey": "/documentation/class-observablewindowsregistrykey.html",
"/uco/observable/WindowsRegistryKeyFacet": "/documentation/class-observablewindowsregistrykeyfacet.html",
"/uco/observable/WindowsRegistryValue": "/documentation/class-observablewindowsregistryvalue.html",
"/uco/observable/WindowsService": "/documentation/class-observablewindowsservice.html",
"/uco/observable/WindowsServiceFacet": "/documentation/class-observablewindowsservicefacet.html",
"/uco/observable/WindowsSystemRestore": "/documentation/class-observablewindowssystemrestore.html",
"/uco/observable/WindowsTask": "/documentation/class-observablewindowstask.html",
"/uco/observable/WindowsTaskFacet": "/documentation/class-observablewindowstaskfacet.html",
"/uco/observable/WindowsThread": "/documentation/class-observablewindowsthread.html",
"/uco/observable/WindowsThreadFacet": "/documentation/class-observablewindowsthreadfacet.html",
"/uco/observable/WindowsVolumeFacet": "/documentation/class-observablewindowsvolumefacet.html",
"/uco/observable/WindowsWaitableTime": "/documentation/class-observablewindowswaitabletime.html",
"/uco/observable/WirelessNetworkConnection": "/documentation/class-observablewirelessnetworkconnection.html",
"/uco/observable/WirelessNetworkConnectionFacet": "/documentation/class-observablewirelessnetworkconnectionfacet.html",
"/uco/observable/WriteBlocker": "/documentation/class-observablewriteblocker.html",
"/uco/observable/X509Certificate": "/documentation/class-observablex509certificate.html",
"/uco/observable/X509CertificateFacet": "/documentation/class-observablex509certificatefacet.html",
"/uco/observable/X509V3Certificate": "/documentation/class-observablex509v3certificate.html",
"/uco/observable/X509V3ExtensionsFacet": "/documentation/class-observablex509v3extensionsfacet.html",
"/uco/observable/abbreviation": "/documentation/prop-observableabbreviation.html",
"/uco/observable/accessedDirectory": "/documentation/prop-observableaccesseddirectory.html",
"/uco/observable/accessedFile": "/documentation/prop-observableaccessedfile.html",
"/uco/observable/accessedTime": "/documentation/prop-observableaccessedtime.html",
"/uco/observable/account": "/documentation/prop-observableaccount.html",
"/uco/observable/accountIdentifier": "/documentation/prop-observableaccountidentifier.html",
"/uco/observable/accountIssuer": "/documentation/prop-observableaccountissuer.html",
"/uco/observable/accountLogin": "/documentation/prop-observableaccountlogin.html",
"/uco/observable/accountLogonType": "/documentation/prop-observableaccountlogontype.html",
"/uco/observable/accountRunLevel": "/documentation/prop-observableaccountrunlevel.html",
"/uco/observable/accountType": "/documentation/prop-observableaccounttype.html",
"/uco/observable/actionID": "/documentation/prop-observableactionid.html",
"/uco/observable/actionList": "/documentation/prop-observableactionlist.html",
"/uco/observable/actionType": "/documentation/prop-observableactiontype.html",
"/uco/observable/activeDirectoryGroups": "/documentation/prop-observableactivedirectorygroups.html",
"/uco/observable/adapterName": "/documentation/prop-observableadaptername.html",
"/uco/observable/addressOfEntryPoint": "/documentation/prop-observableaddressofentrypoint.html",
"/uco/observable/addressValue": "/documentation/prop-observableaddressvalue.html",
"/uco/observable/advertisingID": "/documentation/prop-observableadvertisingid.html",
"/uco/observable/allocationStatus": "/documentation/prop-observableallocationstatus.html",
"/uco/observable/alternateDataStreams": "/documentation/prop-observablealternatedatastreams.html",
"/uco/observable/androidFingerprint": "/documentation/prop-observableandroidfingerprint.html",
"/uco/observable/androidID": "/documentation/prop-observableandroidid.html",
"/uco/observable/androidVersion": "/documentation/prop-observableandroidversion.html",
"/uco/observable/antennaHeight": "/documentation/prop-observableantennaheight.html",
"/uco/observable/application": "/documentation/prop-observableapplication.html",
"/uco/observable/applicationFileName": "/documentation/prop-observableapplicationfilename.html",
"/uco/observable/applicationIdentifier": "/documentation/prop-observableapplicationidentifier.html",
"/uco/observable/archiveType": "/documentation/prop-observablearchivetype.html",
"/uco/observable/arguments": "/documentation/prop-observablearguments.html",
"/uco/observable/asHandle": "/documentation/prop-observableashandle.html",
"/uco/observable/aslrEnabled": "/documentation/prop-observableaslrenabled.html",
"/uco/observable/attendant": "/documentation/prop-observableattendant.html",
"/uco/observable/audioType": "/documentation/prop-observableaudiotype.html",
"/uco/observable/authorityKeyIdentifier": "/documentation/prop-observableauthoritykeyidentifier.html",
"/uco/observable/availableRam": "/documentation/prop-observableavailableram.html",
"/uco/observable/azimuth": "/documentation/prop-observableazimuth.html",
"/uco/observable/baseOfCode": "/documentation/prop-observablebaseofcode.html",
"/uco/observable/baseStation": "/documentation/prop-observablebasestation.html",
"/uco/observable/basicConstraints": "/documentation/prop-observablebasicconstraints.html",
"/uco/observable/bcc": "/documentation/prop-observablebcc.html",
"/uco/observable/binary": "/documentation/prop-observablebinary.html",
"/uco/observable/biosDate": "/documentation/prop-observablebiosdate.html",
"/uco/observable/biosManufacturer": "/documentation/prop-observablebiosmanufacturer.html",
"/uco/observable/biosReleaseDate": "/documentation/prop-observablebiosreleasedate.html",
"/uco/observable/biosSerialNumber": "/documentation/prop-observablebiosserialnumber.html",
"/uco/observable/biosVersion": "/documentation/prop-observablebiosversion.html",
"/uco/observable/bitRate": "/documentation/prop-observablebitrate.html",
"/uco/observable/bitness": "/documentation/prop-observablebitness.html",
"/uco/observable/bitsPerPixel": "/documentation/prop-observablebitsperpixel.html",
"/uco/observable/blockType": "/documentation/prop-observableblocktype.html",
"/uco/observable/bluetoothDeviceName": "/documentation/prop-observablebluetoothdevicename.html",
"/uco/observable/body": "/documentation/prop-observablebody.html",
"/uco/observable/bodyMultipart": "/documentation/prop-observablebodymultipart.html",
"/uco/observable/bodyRaw": "/documentation/prop-observablebodyraw.html",
"/uco/observable/bookmarkPath": "/documentation/prop-observablebookmarkpath.html",
"/uco/observable/browserInformation": "/documentation/prop-observablebrowserinformation.html",
"/uco/observable/browserUserProfile": "/documentation/prop-observablebrowseruserprofile.html",
"/uco/observable/byteOrder": "/documentation/prop-observablebyteorder.html",
"/uco/observable/byteStringValue": "/documentation/prop-observablebytestringvalue.html",
"/uco/observable/callType": "/documentation/prop-observablecalltype.html",
"/uco/observable/camera": "/documentation/prop-observablecamera.html",
"/uco/observable/canEscalatePrivs": "/documentation/prop-observablecanescalateprivs.html",
"/uco/observable/captureCellSite": "/documentation/prop-observablecapturecellsite.html",
"/uco/observable/carrier": "/documentation/prop-observablecarrier.html",
"/uco/observable/categories": "/documentation/prop-observablecategories.html",
"/uco/observable/cc": "/documentation/prop-observablecc.html",
"/uco/observable/cellSiteCountryCode": "/documentation/prop-observablecellsitecountrycode.html",
"/uco/observable/cellSiteIdentifier": "/documentation/prop-observablecellsiteidentifier.html",
"/uco/observable/cellSiteLocationAreaCode": "/documentation/prop-observablecellsitelocationareacode.html",
"/uco/observable/cellSiteNetworkCode": "/documentation/prop-observablecellsitenetworkcode.html",
"/uco/observable/cellSiteType": "/documentation/prop-observablecellsitetype.html",
"/uco/observable/certificateIssuer": "/documentation/prop-observablecertificateissuer.html",
"/uco/observable/certificatePolicies": "/documentation/prop-observablecertificatepolicies.html",
"/uco/observable/certificateSubject": "/documentation/prop-observablecertificatesubject.html",
"/uco/observable/characteristics": "/documentation/prop-observablecharacteristics.html",
"/uco/observable/checksum": "/documentation/prop-observablechecksum.html",
"/uco/observable/clockSetting": "/documentation/prop-observableclocksetting.html",
"/uco/observable/clusterSize": "/documentation/prop-observableclustersize.html",
"/uco/observable/columnName": "/documentation/prop-observablecolumnname.html",
"/uco/observable/comClassID": "/documentation/prop-observablecomclassid.html",
"/uco/observable/comData": "/documentation/prop-observablecomdata.html",
"/uco/observable/comment": "/documentation/prop-observablecomment.html",
"/uco/observable/compressionMethod": "/documentation/prop-observablecompressionmethod.html",
"/uco/observable/compressionRatio": "/documentation/prop-observablecompressionratio.html",
"/uco/observable/contact": "/documentation/prop-observablecontact.html",
"/uco/observable/contactAddress": "/documentation/prop-observablecontactaddress.html",
"/uco/observable/contactAddressScope": "/documentation/prop-observablecontactaddressscope.html",
"/uco/observable/contactAffiliation": "/documentation/prop-observablecontactaffiliation.html",
"/uco/observable/contactEmail": "/documentation/prop-observablecontactemail.html",
"/uco/observable/contactEmailScope": "/documentation/prop-observablecontactemailscope.html",
"/uco/observable/contactGroup": "/documentation/prop-observablecontactgroup.html",
"/uco/observable/contactID": "/documentation/prop-observablecontactid.html",
"/uco/observable/contactMessaging": "/documentation/prop-observablecontactmessaging.html",
"/uco/observable/contactMessagingPlatform": "/documentation/prop-observablecontactmessagingplatform.html",
"/uco/observable/contactNote": "/documentation/prop-observablecontactnote.html",
"/uco/observable/contactOrganization": "/documentation/prop-observablecontactorganization.html",
"/uco/observable/contactPhone": "/documentation/prop-observablecontactphone.html",
"/uco/observable/contactPhoneNumber": "/documentation/prop-observablecontactphonenumber.html",
"/uco/observable/contactPhoneScope": "/documentation/prop-observablecontactphonescope.html",
"/uco/observable/contactProfile": "/documentation/prop-observablecontactprofile.html",
"/uco/observable/contactProfilePlatform": "/documentation/prop-observablecontactprofileplatform.html",
"/uco/observable/contactSIP": "/documentation/prop-observablecontactsip.html",
"/uco/observable/contactSIPScope": "/documentation/prop-observablecontactsipscope.html",
"/uco/observable/contactURL": "/documentation/prop-observablecontacturl.html",
"/uco/observable/contactURLScope": "/documentation/prop-observablecontacturlscope.html",
"/uco/observable/contentDisposition": "/documentation/prop-observablecontentdisposition.html",
"/uco/observable/contentRecoveredStatus": "/documentation/prop-observablecontentrecoveredstatus.html",
"/uco/observable/contentType": "/documentation/prop-observablecontenttype.html",
"/uco/observable/context": "/documentation/prop-observablecontext.html",
"/uco/observable/controlCode": "/documentation/prop-observablecontrolcode.html",
"/uco/observable/cookieDomain": "/documentation/prop-observablecookiedomain.html",
"/uco/observable/cookieName": "/documentation/prop-observablecookiename.html",
"/uco/observable/cookiePath": "/documentation/prop-observablecookiepath.html",
"/uco/observable/cpeid": "/documentation/prop-observablecpeid.html",
"/uco/observable/cpu": "/documentation/prop-observablecpu.html",
"/uco/observable/cpuFamily": "/documentation/prop-observablecpufamily.html",
"/uco/observable/creationDate": "/documentation/prop-observablecreationdate.html",
"/uco/observable/creationFlags": "/documentation/prop-observablecreationflags.html",
"/uco/observable/creationTime": "/documentation/prop-observablecreationtime.html",
"/uco/observable/creationTime-deprecation-shape": "/documentation/shape-observablecreationtime-deprecation-shape.html",
"/uco/observable/creator": "/documentation/prop-observablecreator.html",
"/uco/observable/creatorUser": "/documentation/prop-observablecreatoruser.html",
"/uco/observable/crlDistributionPoints": "/documentation/prop-observablecrldistributionpoints.html",
"/uco/observable/currentSystemDate": "/documentation/prop-observablecurrentsystemdate.html",
"/uco/observable/currentWorkingDirectory": "/documentation/prop-observablecurrentworkingdirectory.html",
"/uco/observable/cyberAction": "/documentation/prop-observablecyberaction.html",
"/uco/observable/data": "/documentation/prop-observabledata.html",
"/uco/observable/dataPayload": "/documentation/prop-observabledatapayload.html",
"/uco/observable/dataPayloadReferenceURL": "/documentation/prop-observabledatapayloadreferenceurl.html",
"/uco/observable/dataType": "/documentation/prop-observabledatatype.html",
"/uco/observable/depEnabled": "/documentation/prop-observabledepenabled.html",
"/uco/observable/descriptions": "/documentation/prop-observabledescriptions.html",
"/uco/observable/destination": "/documentation/prop-observabledestination.html",
"/uco/observable/destinationFlags": "/documentation/prop-observabledestinationflags.html",
"/uco/observable/destinationPort": "/documentation/prop-observabledestinationport.html",
"/uco/observable/deviceType": "/documentation/prop-observabledevicetype.html",
"/uco/observable/dhcpLeaseExpires": "/documentation/prop-observabledhcpleaseexpires.html",
"/uco/observable/dhcpLeaseObtained": "/documentation/prop-observabledhcpleaseobtained.html",
"/uco/observable/dhcpServer": "/documentation/prop-observabledhcpserver.html",
"/uco/observable/diskPartitionType": "/documentation/prop-observablediskpartitiontype.html",
"/uco/observable/diskSize": "/documentation/prop-observabledisksize.html",
"/uco/observable/diskType": "/documentation/prop-observabledisktype.html",
"/uco/observable/displayName": "/documentation/prop-observabledisplayname.html",
"/uco/observable/dllCharacteristics": "/documentation/prop-observabledllcharacteristics.html",
"/uco/observable/dnssec": "/documentation/prop-observablednssec.html",
"/uco/observable/documentInformationDictionary": "/documentation/prop-observabledocumentinformationdictionary.html",
"/uco/observable/domain": "/documentation/prop-observabledomain.html",
"/uco/observable/domainID": "/documentation/prop-observabledomainid.html",
"/uco/observable/domainName": "/documentation/prop-observabledomainname.html",
"/uco/observable/driveLetter": "/documentation/prop-observabledriveletter.html",
"/uco/observable/driveType": "/documentation/prop-observabledrivetype.html",
"/uco/observable/dst": "/documentation/prop-observabledst.html",
"/uco/observable/dstBytes": "/documentation/prop-observabledstbytes.html",
"/uco/observable/dstPackets": "/documentation/prop-observabledstpackets.html",
"/uco/observable/dstPayload": "/documentation/prop-observabledstpayload.html",
"/uco/observable/duration": "/documentation/prop-observableduration.html",
"/uco/observable/effectiveGroup": "/documentation/prop-observableeffectivegroup.html",
"/uco/observable/effectiveGroupID": "/documentation/prop-observableeffectivegroupid.html",
"/uco/observable/effectiveUser": "/documentation/prop-observableeffectiveuser.html",
"/uco/observable/elevation": "/documentation/prop-observableelevation.html",
"/uco/observable/emailAddress": "/documentation/prop-observableemailaddress.html",
"/uco/observable/encoding": "/documentation/prop-observableencoding.html",
"/uco/observable/encodingMethod": "/documentation/prop-observableencodingmethod.html",
"/uco/observable/encryptionIV": "/documentation/prop-observableencryptioniv.html",
"/uco/observable/encryptionKey": "/documentation/prop-observableencryptionkey.html",
"/uco/observable/encryptionMethod": "/documentation/prop-observableencryptionmethod.html",
"/uco/observable/encryptionMode": "/documentation/prop-observableencryptionmode.html",
"/uco/observable/endTime": "/documentation/prop-observableendtime.html",
"/uco/observable/englishTranslation": "/documentation/prop-observableenglishtranslation.html",
"/uco/observable/entropy": "/documentation/prop-observableentropy.html",
"/uco/observable/entryID": "/documentation/prop-observableentryid.html",
"/uco/observable/environmentVariables": "/documentation/prop-observableenvironmentvariables.html",
"/uco/observable/eventRecordDevice": "/documentation/prop-observableeventrecorddevice.html",
"/uco/observable/eventRecordID": "/documentation/prop-observableeventrecordid.html",
"/uco/observable/eventRecordRaw": "/documentation/prop-observableeventrecordraw.html",
"/uco/observable/eventRecordServiceName": "/documentation/prop-observableeventrecordservicename.html",
"/uco/observable/eventRecordText": "/documentation/prop-observableeventrecordtext.html",
"/uco/observable/eventStatus": "/documentation/prop-observableeventstatus.html",
"/uco/observable/eventType": "/documentation/prop-observableeventtype.html",
"/uco/observable/execArguments": "/documentation/prop-observableexecarguments.html",
"/uco/observable/execProgramHashes": "/documentation/prop-observableexecprogramhashes.html",
"/uco/observable/execProgramPath": "/documentation/prop-observableexecprogrampath.html",
"/uco/observable/execWorkingDirectory": "/documentation/prop-observableexecworkingdirectory.html",
"/uco/observable/exifData": "/documentation/prop-observableexifdata.html",
"/uco/observable/exitCode": "/documentation/prop-observableexitcode.html",
"/uco/observable/exitStatus": "/documentation/prop-observableexitstatus.html",
"/uco/observable/exitTime": "/documentation/prop-observableexittime.html",
"/uco/observable/expirationDate": "/documentation/prop-observableexpirationdate.html",
"/uco/observable/expirationTime": "/documentation/prop-observableexpirationtime.html",
"/uco/observable/extDeletionTime": "/documentation/prop-observableextdeletiontime.html",
"/uco/observable/extFileType": "/documentation/prop-observableextfiletype.html",
"/uco/observable/extFlags": "/documentation/prop-observableextflags.html",
"/uco/observable/extHardLinkCount": "/documentation/prop-observableexthardlinkcount.html",
"/uco/observable/extInodeChangeTime": "/documentation/prop-observableextinodechangetime.html",
"/uco/observable/extInodeID": "/documentation/prop-observableextinodeid.html",
"/uco/observable/extPermissions": "/documentation/prop-observableextpermissions.html",
"/uco/observable/extSGID": "/documentation/prop-observableextsgid.html",
"/uco/observable/extSUID": "/documentation/prop-observableextsuid.html",
"/uco/observable/extendedKeyUsage": "/documentation/prop-observableextendedkeyusage.html",
"/uco/observable/extension": "/documentation/prop-observableextension.html",
"/uco/observable/favoritesCount": "/documentation/prop-observablefavoritescount.html",
"/uco/observable/fileAlignment": "/documentation/prop-observablefilealignment.html",
"/uco/observable/fileHeaderHashes": "/documentation/prop-observablefileheaderhashes.html",
"/uco/observable/fileName": "/documentation/prop-observablefilename.html",
"/uco/observable/filePath": "/documentation/prop-observablefilepath.html",
"/uco/observable/fileSystemType": "/documentation/prop-observablefilesystemtype.html",
"/uco/observable/firstLoginTime": "/documentation/prop-observablefirstlogintime.html",
"/uco/observable/firstName": "/documentation/prop-observablefirstname.html",
"/uco/observable/firstRun": "/documentation/prop-observablefirstrun.html",
"/uco/observable/firstVisit": "/documentation/prop-observablefirstvisit.html",
"/uco/observable/flags": "/documentation/prop-observableflags.html",
"/uco/observable/followersCount": "/documentation/prop-observablefollowerscount.html",
"/uco/observable/format": "/documentation/prop-observableformat.html",
"/uco/observable/fragment": "/documentation/prop-observablefragment.html",
"/uco/observable/fragmentIndex": "/documentation/prop-observablefragmentindex.html",
"/uco/observable/freeSpace": "/documentation/prop-observablefreespace.html",
"/uco/observable/friendsCount": "/documentation/prop-observablefriendscount.html",
"/uco/observable/from": "/documentation/prop-observablefrom.html",
"/uco/observable/fromURLVisit": "/documentation/prop-observablefromurlvisit.html",
"/uco/observable/fullValue": "/documentation/prop-observablefullvalue.html",
"/uco/observable/geoLocationEntry": "/documentation/prop-observablegeolocationentry.html",
"/uco/observable/geolocationAddress": "/documentation/prop-observablegeolocationaddress.html",
"/uco/observable/gid": "/documentation/prop-observablegid.html",
"/uco/observable/globalFlagList": "/documentation/prop-observableglobalflaglist.html",
"/uco/observable/gpu": "/documentation/prop-observablegpu.html",
"/uco/observable/gpuFamily": "/documentation/prop-observablegpufamily.html",
"/uco/observable/groupName": "/documentation/prop-observablegroupname.html",
"/uco/observable/groups": "/documentation/prop-observablegroups.html",
"/uco/observable/hasChanged": "/documentation/prop-observablehaschanged.html",
"/uco/observable/hash": "/documentation/prop-observablehash.html",
"/uco/observable/hashes": "/documentation/prop-observablehashes.html",
"/uco/observable/headerRaw": "/documentation/prop-observableheaderraw.html",
"/uco/observable/hexadecimalValue": "/documentation/prop-observablehexadecimalvalue.html",
"/uco/observable/hiveType": "/documentation/prop-observablehivetype.html",
"/uco/observable/homeDirectory": "/documentation/prop-observablehomedirectory.html",
"/uco/observable/horizontalBeamWidth": "/documentation/prop-observablehorizontalbeamwidth.html",
"/uco/observable/host": "/documentation/prop-observablehost.html",
"/uco/observable/hostname": "/documentation/prop-observablehostname.html",
"/uco/observable/httpMesageBodyLength": "/documentation/prop-observablehttpmesagebodylength.html",
"/uco/observable/httpMessageBodyData": "/documentation/prop-observablehttpmessagebodydata.html",
"/uco/observable/httpRequestHeader": "/documentation/prop-observablehttprequestheader.html",
"/uco/observable/iComHandlerAction": "/documentation/prop-observableicomhandleraction.html",
"/uco/observable/iEmailAction": "/documentation/prop-observableiemailaction.html",
"/uco/observable/iExecAction": "/documentation/prop-observableiexecaction.html",
"/uco/observable/iShowMessageAction": "/documentation/prop-observableishowmessageaction.html",
"/uco/observable/icmpCode": "/documentation/prop-observableicmpcode.html",
"/uco/observable/icmpType": "/documentation/prop-observableicmptype.html",
"/uco/observable/imageBase": "/documentation/prop-observableimagebase.html",
"/uco/observable/imageCompressionMethod": "/documentation/prop-observableimagecompressionmethod.html",
"/uco/observable/imageName": "/documentation/prop-observableimagename.html",
"/uco/observable/imageType": "/documentation/prop-observableimagetype.html",
"/uco/observable/impHash": "/documentation/prop-observableimphash.html",
"/uco/observable/inReplyTo": "/documentation/prop-observableinreplyto.html",
"/uco/observable/inetLocation": "/documentation/prop-observableinetlocation.html",
"/uco/observable/inhibitAnyPolicy": "/documentation/prop-observableinhibitanypolicy.html",
"/uco/observable/installDate": "/documentation/prop-observableinstalldate.html",
"/uco/observable/installedVersionHistory": "/documentation/prop-observableinstalledversionhistory.html",
"/uco/observable/interceptedCallState": "/documentation/prop-observableinterceptedcallstate.html",
"/uco/observable/ip": "/documentation/prop-observableip.html",
"/uco/observable/ipAddress": "/documentation/prop-observableipaddress.html",
"/uco/observable/ipGateway": "/documentation/prop-observableipgateway.html",
"/uco/observable/ipfix": "/documentation/prop-observableipfix.html",
"/uco/observable/isADBRootEnabled": "/documentation/prop-observableisadbrootenabled.html",
"/uco/observable/isActive": "/documentation/prop-observableisactive.html",
"/uco/observable/isDirectory": "/documentation/prop-observableisdirectory.html",
"/uco/observable/isDisabled": "/documentation/prop-observableisdisabled.html",
"/uco/observable/isEnabled": "/documentation/prop-observableisenabled.html",
"/uco/observable/isEncrypted": "/documentation/prop-observableisencrypted.html",
"/uco/observable/isHidden": "/documentation/prop-observableishidden.html",
"/uco/observable/isInjected": "/documentation/prop-observableisinjected.html",
"/uco/observable/isLimitAdTrackingEnabled": "/documentation/prop-observableislimitadtrackingenabled.html",
"/uco/observable/isMapped": "/documentation/prop-observableismapped.html",
"/uco/observable/isMimeEncoded": "/documentation/prop-observableismimeencoded.html",
"/uco/observable/isMultipart": "/documentation/prop-observableismultipart.html",
"/uco/observable/isNamed": "/documentation/prop-observableisnamed.html",
"/uco/observable/isOptimized": "/documentation/prop-observableisoptimized.html",
"/uco/observable/isPrivate": "/documentation/prop-observableisprivate.html",
"/uco/observable/isPrivileged": "/documentation/prop-observableisprivileged.html",
"/uco/observable/isProtected": "/documentation/prop-observableisprotected.html",
"/uco/observable/isRead": "/documentation/prop-observableisread.html",
"/uco/observable/isSURootEnabled": "/documentation/prop-observableissurootenabled.html",
"/uco/observable/isSecure": "/documentation/prop-observableissecure.html",
"/uco/observable/isSelfSigned": "/documentation/prop-observableisselfsigned.html",
"/uco/observable/isServiceAccount": "/documentation/prop-observableisserviceaccount.html",
"/uco/observable/isTLD": "/documentation/prop-observableistld.html",
"/uco/observable/isVolatile": "/documentation/prop-observableisvolatile.html",
"/uco/observable/issuer": "/documentation/prop-observableissuer.html",
"/uco/observable/issuerAlternativeName": "/documentation/prop-observableissueralternativename.html",
"/uco/observable/issuerHash": "/documentation/prop-observableissuerhash.html",
"/uco/observable/key": "/documentation/prop-observablekey.html",
"/uco/observable/keyUsage": "/documentation/prop-observablekeyusage.html",
"/uco/observable/keypadUnlockCode": "/documentation/prop-observablekeypadunlockcode.html",
"/uco/observable/keywordSearchTerm": "/documentation/prop-observablekeywordsearchterm.html",
"/uco/observable/labels": "/documentation/prop-observablelabels.html",
"/uco/observable/language": "/documentation/prop-observablelanguage.html",
"/uco/observable/lastLoginTime": "/documentation/prop-observablelastlogintime.html",
"/uco/observable/lastName": "/documentation/prop-observablelastname.html",
"/uco/observable/lastRun": "/documentation/prop-observablelastrun.html",
"/uco/observable/lastShutdownDate": "/documentation/prop-observablelastshutdowndate.html",
"/uco/observable/lastTimeContacted": "/documentation/prop-observablelasttimecontacted.html",
"/uco/observable/lastVisit": "/documentation/prop-observablelastvisit.html",
"/uco/observable/length": "/documentation/prop-observablelength.html",
"/uco/observable/libraryType": "/documentation/prop-observablelibrarytype.html",
"/uco/observable/listedCount": "/documentation/prop-observablelistedcount.html",
"/uco/observable/loaderFlags": "/documentation/prop-observableloaderflags.html",
"/uco/observable/localTime": "/documentation/prop-observablelocaltime.html",
"/uco/observable/location": "/documentation/prop-observablelocation.html",
"/uco/observable/loginTime": "/documentation/prop-observablelogintime.html",
"/uco/observable/logoutTime": "/documentation/prop-observablelogouttime.html",
"/uco/observable/lookupDate": "/documentation/prop-observablelookupdate.html",
"/uco/observable/macAddress": "/documentation/prop-observablemacaddress.html",
"/uco/observable/machine": "/documentation/prop-observablemachine.html",
"/uco/observable/magic": "/documentation/prop-observablemagic.html",
"/uco/observable/magicNumber": "/documentation/prop-observablemagicnumber.html",
"/uco/observable/majorImageVersion": "/documentation/prop-observablemajorimageversion.html",
"/uco/observable/majorLinkerVersion": "/documentation/prop-observablemajorlinkerversion.html",
"/uco/observable/majorOSVersion": "/documentation/prop-observablemajorosversion.html",
"/uco/observable/majorSubsystemVersion": "/documentation/prop-observablemajorsubsystemversion.html",
"/uco/observable/manuallyEnteredCount": "/documentation/prop-observablemanuallyenteredcount.html",
"/uco/observable/manufacturer": "/documentation/prop-observablemanufacturer.html",
"/uco/observable/maxRunTime": "/documentation/prop-observablemaxruntime.html",
"/uco/observable/messageID": "/documentation/prop-observablemessageid.html",
"/uco/observable/messageText": "/documentation/prop-observablemessagetext.html",
"/uco/observable/messageThread": "/documentation/prop-observablemessagethread.html",
"/uco/observable/messageType": "/documentation/prop-observablemessagetype.html",
"/uco/observable/messagingAddress": "/documentation/prop-observablemessagingaddress.html",
"/uco/observable/metadataChangeTime": "/documentation/prop-observablemetadatachangetime.html",
"/uco/observable/metadataRecoveredStatus": "/documentation/prop-observablemetadatarecoveredstatus.html",
"/uco/observable/mftFileID": "/documentation/prop-observablemftfileid.html",
"/uco/observable/mftFileNameAccessedTime": "/documentation/prop-observablemftfilenameaccessedtime.html",
"/uco/observable/mftFileNameCreatedTime": "/documentation/prop-observablemftfilenamecreatedtime.html",
"/uco/observable/mftFileNameLength": "/documentation/prop-observablemftfilenamelength.html",
"/uco/observable/mftFileNameModifiedTime": "/documentation/prop-observablemftfilenamemodifiedtime.html",
"/uco/observable/mftFileNameRecordChangeTime": "/documentation/prop-observablemftfilenamerecordchangetime.html",
"/uco/observable/mftFlags": "/documentation/prop-observablemftflags.html",
"/uco/observable/mftParentID": "/documentation/prop-observablemftparentid.html",
"/uco/observable/mftRecordChangeTime": "/documentation/prop-observablemftrecordchangetime.html",
"/uco/observable/middleName": "/documentation/prop-observablemiddlename.html",
"/uco/observable/mimeClass": "/documentation/prop-observablemimeclass.html",
"/uco/observable/mimeType": "/documentation/prop-observablemimetype.html",
"/uco/observable/minorImageVersion": "/documentation/prop-observableminorimageversion.html",
"/uco/observable/minorLinkerVersion": "/documentation/prop-observableminorlinkerversion.html",
"/uco/observable/minorOSVersion": "/documentation/prop-observableminorosversion.html",
"/uco/observable/minorSubsystemVersion": "/documentation/prop-observableminorsubsystemversion.html",
"/uco/observable/mockLocationsAllowed": "/documentation/prop-observablemocklocationsallowed.html",
"/uco/observable/model": "/documentation/prop-observablemodel.html",
"/uco/observable/modifiedTime": "/documentation/prop-observablemodifiedtime.html",
"/uco/observable/mostRecentRunTime": "/documentation/prop-observablemostrecentruntime.html",
"/uco/observable/mountPoint": "/documentation/prop-observablemountpoint.html",
"/uco/observable/msProductID": "/documentation/prop-observablemsproductid.html",
"/uco/observable/msProductName": "/documentation/prop-observablemsproductname.html",
"/uco/observable/mutexName": "/documentation/prop-observablemutexname.html",
"/uco/observable/nameConstraints": "/documentation/prop-observablenameconstraints.html",
"/uco/observable/namePhonetic": "/documentation/prop-observablenamephonetic.html",
"/uco/observable/namePrefix": "/documentation/prop-observablenameprefix.html",
"/uco/observable/nameRecoveredStatus": "/documentation/prop-observablenamerecoveredstatus.html",
"/uco/observable/nameServer": "/documentation/prop-observablenameserver.html",
"/uco/observable/nameSuffix": "/documentation/prop-observablenamesuffix.html",
"/uco/observable/netBIOSName": "/documentation/prop-observablenetbiosname.html",
"/uco/observable/network": "/documentation/prop-observablenetwork.html",
"/uco/observable/networkInterface": "/documentation/prop-observablenetworkinterface.html",
"/uco/observable/newObject": "/documentation/prop-observablenewobject.html",
"/uco/observable/nextRunTime": "/documentation/prop-observablenextruntime.html",
"/uco/observable/nickname": "/documentation/prop-observablenickname.html",
"/uco/observable/ntfsHardLinkCount": "/documentation/prop-observablentfshardlinkcount.html",
"/uco/observable/ntfsOwnerID": "/documentation/prop-observablentfsownerid.html",
"/uco/observable/ntfsOwnerSID": "/documentation/prop-observablentfsownersid.html",
"/uco/observable/number": "/documentation/prop-observablenumber.html",
"/uco/observable/numberOfLaunches": "/documentation/prop-observablenumberoflaunches.html",
"/uco/observable/numberOfRVAAndSizes": "/documentation/prop-observablenumberofrvaandsizes.html",
"/uco/observable/numberOfSections": "/documentation/prop-observablenumberofsections.html",
"/uco/observable/numberOfSubkeys": "/documentation/prop-observablenumberofsubkeys.html",
"/uco/observable/numberOfSymbols": "/documentation/prop-observablenumberofsymbols.html",
"/uco/observable/numberTimesContacted": "/documentation/prop-observablenumbertimescontacted.html",
"/uco/observable/objectGUID": "/documentation/prop-observableobjectguid.html",
"/uco/observable/observableCreatedTime": "/documentation/prop-observableobservablecreatedtime.html",
"/uco/observable/oldObject": "/documentation/prop-observableoldobject.html",
"/uco/observable/openFileDescriptor": "/documentation/prop-observableopenfiledescriptor.html",
"/uco/observable/operatingSystem": "/documentation/prop-observableoperatingsystem.html",
"/uco/observable/optionalHeader": "/documentation/prop-observableoptionalheader.html",
"/uco/observable/options": "/documentation/prop-observableoptions.html",
"/uco/observable/organizationDepartment": "/documentation/prop-observableorganizationdepartment.html",
"/uco/observable/organizationLocation": "/documentation/prop-observableorganizationlocation.html",
"/uco/observable/organizationPosition": "/documentation/prop-observableorganizationposition.html",
"/uco/observable/osInstallDate": "/documentation/prop-observableosinstalldate.html",
"/uco/observable/osLastUpgradeDate": "/documentation/prop-observableoslastupgradedate.html",
"/uco/observable/otherHeaders": "/documentation/prop-observableotherheaders.html",
"/uco/observable/owner": "/documentation/prop-observableowner.html",
"/uco/observable/ownerSID": "/documentation/prop-observableownersid.html",
"/uco/observable/pageTitle": "/documentation/prop-observablepagetitle.html",