-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.lock
More file actions
5083 lines (5083 loc) · 199 KB
/
deno.lock
File metadata and controls
5083 lines (5083 loc) · 199 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "5",
"specifiers": {
"npm:@comunica/query-sparql@^4.2.0": "4.2.0",
"npm:@rdfjs/data-model@^2.1.0": "2.1.0",
"npm:@rdfjs/types@^2.0.1": "2.0.1",
"npm:@testing-library/dom@^10.4.0": "10.4.0",
"npm:@types/events@^3.0.3": "3.0.3",
"npm:@types/n3@^1.25.3": "1.25.3",
"npm:@types/node@^22.15.29": "22.15.29",
"npm:@types/rdfjs__data-model@^2.0.9": "2.0.9",
"npm:@types/wicg-file-system-access@^2023.10.6": "2023.10.6",
"npm:@vitest/browser@^3.1.4": "3.1.4_vitest@3.1.4__vite@6.3.5___picomatch@4.0.2__@vitest+browser@3.1.4_@testing-library+dom@10.4.0_vite@6.3.5__picomatch@4.0.2_@types+node@22.15.29",
"npm:events@^3.3.0": "3.3.0",
"npm:hex-encoding@^2.0.3": "2.0.3",
"npm:idb-keyval@^6.2.2": "6.2.2",
"npm:n3@^1.25.2": "1.25.2",
"npm:readable-stream@^4.7.0": "4.7.0",
"npm:typescript@~5.8.3": "5.8.3",
"npm:vite@^6.3.5": "6.3.5_picomatch@4.0.2_@types+node@22.15.29",
"npm:vitest@^3.1.4": "3.1.4_vite@6.3.5__picomatch@4.0.2_@vitest+browser@3.1.4__vitest@3.1.4__@testing-library+dom@10.4.0__vite@6.3.5___picomatch@4.0.2_@types+node@22.15.29"
},
"npm": {
"@babel/code-frame@7.27.1": {
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"dependencies": [
"@babel/helper-validator-identifier",
"js-tokens",
"picocolors"
]
},
"@babel/helper-validator-identifier@7.27.1": {
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
},
"@babel/runtime@7.27.4": {
"integrity": "sha512-t3yaEOuGu9NlIZ+hIeGbBjFtZT7j2cb2tg0fuaJKeGotchRjjLfrBA9Kwf8quhpP1EUuxModQg04q/mBwyg8uA=="
},
"@bergos/jsonparse@1.4.2": {
"integrity": "sha512-qUt0QNJjvg4s1zk+AuLM6s/zcsQ8MvGn7+1f0vPuxvpCYa08YtTryuDInngbEyW5fNGGYe2znKt61RMGd5HnXg==",
"dependencies": [
"buffer"
]
},
"@colors/colors@1.6.0": {
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA=="
},
"@comunica/actor-abstract-mediatyped@2.10.0": {
"integrity": "sha512-0o6WBujsMnIVcwvRJv6Nj+kKPLZzqBS3On48rm01Rh9T1/My0E/buJMXwgcARKCfMonc2mJ9zxpPCh5ilGEU2A==",
"dependencies": [
"@comunica/core@2.10.0",
"@comunica/types@2.10.0"
]
},
"@comunica/actor-abstract-mediatyped@4.2.0": {
"integrity": "sha512-+7NuPZQAi7iRJ1Cie9qqhbJjBv0/SadA/24+KrDVU4+4QM6n5usCKibA8D84Nqgt257IsrFrb2G7NndTZ6taww==",
"dependencies": [
"@comunica/core@4.2.0",
"@comunica/types@4.2.0"
]
},
"@comunica/actor-abstract-parse@2.10.0": {
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"dependencies": [
"@comunica/core@2.10.0",
"readable-stream@4.7.0"
]
},
"@comunica/actor-abstract-parse@4.2.0": {
"integrity": "sha512-WUHr9Bhr3Z7eJ2GtSGnhj1xCXCarKkC82WPorlG+RhuPuryp152GtJYtdyBIR4pEetP2hL4n+VuvHjXY80LWbQ==",
"dependencies": [
"@comunica/core@4.2.0",
"readable-stream@4.7.0"
]
},
"@comunica/actor-abstract-path@4.2.0": {
"integrity": "sha512-nGTyVehpd48b0PxnSX6OPLf2RwfezbP91aS8MYMVqiTkHzXWgvyzmGLy2XwdugaXS8NEoptqD3ShrUFOp84O4g==",
"dependencies": [
"@comunica/bus-query-operation",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-bindings-factory",
"@comunica/utils-query-operation",
"@rdfjs/types@2.0.1",
"asynciterator",
"rdf-string@1.6.3",
"sparqlalgebrajs"
]
},
"@comunica/actor-bindings-aggregator-factory-average@4.2.0": {
"integrity": "sha512-VXVPsfVB801cXFfAMwnURTsOFrPYUB1qxxQNen1rlV0DVAFJw4kbgmdJLbnmBOR8Job7jx0JqQh5hKvl6uJP9w==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-count@4.2.0": {
"integrity": "sha512-wCo+ezCKYCDrzNwg07i9Z9xfBHHLKQLS10ImTEDMpjRNshR4GWgWB9saHQi2COEsBMTERBpEHADB4BZTx8FC6w==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"@rdfjs/types@2.0.1",
"sparqlalgebrajs"
]
},
"@comunica/actor-bindings-aggregator-factory-group-concat@4.2.0": {
"integrity": "sha512-Npn5Jco1vZLc5tmYe2eRgENEYFXdjuHrIjYagmA74wdw/cWUei74XE2zN1y2G4hW2DmvLVS9WXQ5ww9t0qxdzA==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-max@4.2.0": {
"integrity": "sha512-T5ApKSMavbKyALe4PadgBQSj4AE2fa0yk6+tUiKRFr0I5WqMyoj57x3SWasVtWXssk/LySyT+PNQzr5c4tlc9w==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-min@4.2.0": {
"integrity": "sha512-kUv1v0pqJrrrmOhx+SfLXMafreJAn48Phb5xcTT7UqyYTQO+WYGa3pXp2+P+9QfitreR4At58FNsv1lz5f9pAw==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-sample@4.2.0": {
"integrity": "sha512-uV+3rrTfOAHricPHcuGPRVkufOfsBzQFM7Fa19/bmaZbWiouVS22bwAeQhQbUJXmQ4uU79kCD+eYXOKw689t/Q==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-sum@4.2.0": {
"integrity": "sha512-Zh4Fr3IUiPFhr6cv/B49JBshOJHwEHZQ0qKsYN0ZTHc4YVA58/aveufhQX75Ijr/NU8wl9s7XRsy4/PZPk0SDA==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"@rdfjs/types@2.0.1"
]
},
"@comunica/actor-bindings-aggregator-factory-wildcard-count@4.2.0": {
"integrity": "sha512-tBYD4aFjeqPMzYGnCdxngYh6Xwi7rbRE/60jTXy8O3TMiHjt2ogCDxF4qMlO6VJGWVb8Sg2ZTFciuNDwPR28HA==",
"dependencies": [
"@comunica/bus-bindings-aggregator-factory",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"@rdfjs/types@2.0.1",
"rdf-string@1.6.3"
]
},
"@comunica/actor-context-preprocess-convert-shortcuts@4.2.0": {
"integrity": "sha512-M1ruybVTRaaRkLBKlCDyLYOvxeDvFTW28R2USnTxoqMSYEA8kt4Wl7WHq3CeswCQjJy09MzNFsMieUplJXcJsA==",
"dependencies": [
"@comunica/bus-context-preprocess",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0"
]
},
"@comunica/actor-context-preprocess-query-source-identify@4.2.0": {
"integrity": "sha512-5Y1FgCjDxuZVdaHFeBr71pIcDO++kIuHEiXqSi2JN4JjAv/if7Ds2Y7xkyU5c3Ql9Qh5G7rkFZ37jvpW+hiu/g==",
"dependencies": [
"@comunica/bus-context-preprocess",
"@comunica/bus-http-invalidate",
"@comunica/bus-query-source-identify",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"lru-cache"
]
},
"@comunica/actor-context-preprocess-query-source-skolemize@4.2.0": {
"integrity": "sha512-5QL1DI0vBeCRDJItM1LfM+vk1G2kUi1CpSb4uAwaa8o8hkwdExtWXguPp+w8GCk/h5ot4P23vgWgwZTZ3nwW2A==",
"dependencies": [
"@comunica/bus-context-preprocess",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-data-factory",
"@comunica/utils-metadata",
"@rdfjs/types@2.0.1",
"asynciterator",
"rdf-terms@1.11.0",
"sparqlalgebrajs"
]
},
"@comunica/actor-context-preprocess-set-defaults@4.2.0": {
"integrity": "sha512-opUbREA93zVZc9OgPvWYQ3UGZy/WvS4d7bQ8FAcQxfv6zPR6UPC5gCC9/iPMa8f1zFSndj71vd+8AY8JqoB3lA==",
"dependencies": [
"@comunica/bus-context-preprocess",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@rdfjs/types@2.0.1",
"rdf-data-factory@1.1.3"
]
},
"@comunica/actor-context-preprocess-source-to-destination@4.2.0": {
"integrity": "sha512-s3CkLRLQnHWRzZF44vsuRjxslcEK3hH4CnvkSv3SIrHFVuzIrbUFYDUBvuaFmQJFDLmFJEwk7G49MCWh1RmofQ==",
"dependencies": [
"@comunica/bus-context-preprocess",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0"
]
},
"@comunica/actor-dereference-fallback@4.2.0": {
"integrity": "sha512-MtDTZj1zUrzj8zte74+3KnMVaJrQfQm15AquK3g8XwJYwDEPJwT5bDRenb/TXlcG6qio9MamY4iYkgsCRPmPVQ==",
"dependencies": [
"@comunica/bus-dereference",
"@comunica/core@4.2.0"
]
},
"@comunica/actor-dereference-http@4.2.0": {
"integrity": "sha512-FKyO0N15QKanXc5mHAdLTaI0BXEhs2A6uxGr0IwcAePaMFt+fjxlG/sz97PeSgVzoW60nLD21a29KVN6cTGbMg==",
"dependencies": [
"@comunica/bus-dereference",
"@comunica/bus-http@4.2.0",
"@comunica/core@4.2.0",
"@jeswr/stream-to-string",
"relative-to-absolute-iri"
]
},
"@comunica/actor-dereference-rdf-parse@4.2.0": {
"integrity": "sha512-i8Buj5Vlf6C7cA59Y8DqPjVABSDQZtjOgME/dheGrLdGm04xES+MRBwjLIhYnXadBns0Kk/UjIsnSI+k6sEXdw==",
"dependencies": [
"@comunica/bus-dereference",
"@comunica/bus-dereference-rdf",
"@comunica/bus-rdf-parse@4.2.0"
]
},
"@comunica/actor-expression-evaluator-factory-default@4.2.0": {
"integrity": "sha512-LrAySdpna3PdyW67emqIezNGIANsB5XDV38V8IeLiCiK5L1eIIZtk9izHSHhj/aEEWJSsLn7LTzBQcE8a8tjaw==",
"dependencies": [
"@comunica/bus-expression-evaluator-factory",
"@comunica/bus-function-factory",
"@comunica/bus-query-operation",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-bindings-factory",
"@comunica/utils-expression-evaluator",
"@comunica/utils-query-operation",
"@rdfjs/types@2.0.1",
"sparqlalgebrajs"
]
},
"@comunica/actor-function-factory-expression-bnode@4.2.0": {
"integrity": "sha512-s67te7Rts2g+JBmWOcM6/leOg/UB4ilH6Pn0aVeDC3cILn0WuZkqOfMiVlkbvZ/D9sG7eKH/nyPqsoSylUq0HA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-data-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-bound@4.2.0": {
"integrity": "sha512-SU5V0ndU921PjPyX5kUqt5/91ILD+vXz5f+DvkIC5iZqNuVZ0jbXGMAKxQ1Dcy78SN5ll4z0LOIwBx3SyD2ItQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-coalesce@4.2.0": {
"integrity": "sha512-c9t33f/EBfCK4361orkjEhWMEK/eUBkml6xts3eoV2B/aw6fmz2Kht4uve3GX+veTTs7vEW8IjeCmDANxvOvTA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-concat@4.2.0": {
"integrity": "sha512-S+YtHwxnkwedZUE8MDcZYDYiuFCXmmaaWXZIfkbmkm2u5v0fv1NP1UMuEyoLHPHg+COZ4YUmn/dC+vx03fQI+A==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-extensions@4.2.0": {
"integrity": "sha512-88n8WY2wqKKoCRknf/FFUkxBmpCDnG8e35czIIajwzSN4ks5Hiaf4A7m4dm/2ppoxevilz53SollC+Q4gA8iRA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator",
"rdf-data-factory@1.1.3"
]
},
"@comunica/actor-function-factory-expression-if@4.2.0": {
"integrity": "sha512-NjQXhjqJmq263NWy9CmcfiR9yU7mWBRmdFpoG0FjITEK/M0Naaw4uqoAc7XqT9/JLVamBGvPRcnLQbnRheL60g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-in@4.2.0": {
"integrity": "sha512-fcvuCduoXIR+tnfFLDoXhAmlVN2883F7cekVxae1uohDbhC0T+R34N/oipw7TlnYucNlFcG3anpOj1KyEgM6ng==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-logical-and@4.2.0": {
"integrity": "sha512-M18sNb0kDItuf6z8oOLESWenLXLeEuw8NU+H1LB9sFe5S/MWGbj+mKsKTM+4+TsfsUUBXPtdYz68P6QmZo/HTw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-logical-or@4.2.0": {
"integrity": "sha512-HrJJva+8MrC/2Ekj07whjDcDme3li9qo94eNWPt4T5QipgJjoetjcgKmbv8MZT8HnimaHE/Z/joJ0znGE1bLHw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-not-in@4.2.0": {
"integrity": "sha512-bQXdzZPo1GBIXr1mNY5Y2YDnf2WrVtO+wg0GvyoEJyMs0pLp+TLU5Sl9iDtbqZUsvl1Lqq1NVQS0c/O3IzambA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-expression-same-term@4.2.0": {
"integrity": "sha512-8anp3qVn/T1Z6p5XIM0kCR5OPhULkw4ebg8/MKWFmGABJ5CYIfRdzLAxqaFv0whOA6WI3fcriluRscG0YX5zIw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-abs@4.2.0": {
"integrity": "sha512-7VyPSyZ5MWkVlTwuGgp0pQhfVEFeneub7HCP2vLnjvSA4LVZiol98y/oC9p1Y1w8aSoIA4NbTGg4KVXaMPtmUg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-addition@4.2.0": {
"integrity": "sha512-KpqP4AYg7NDRVRbSUvf7n2MOz7dcFwUtEAVaQpDJmcr7Rfy5eAxaFooozaL8MDFOtom/Ekwqafq7tsLe6EzwZQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"bignumber.js"
]
},
"@comunica/actor-function-factory-term-ceil@4.2.0": {
"integrity": "sha512-+xiX6Qz9xP/WX+lBq5TSBHzx89gTeZq/uWdTN0V5q7DskPmpjScdobhtsCSENIB0NPPM+yiXo2TDXl+WdfQDww==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-contains@4.2.0": {
"integrity": "sha512-t/OE6LJ7qFGd+Ptpe61VeLfa0rZcbj4RuwWQ5NV/FKIOyO+EOVvs3jSnsO2fxx+ecQlmXIoxqYKw28MIHmjMdA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-datatype@4.2.0": {
"integrity": "sha512-Ilvh8RQcpUFoVHtiZBJfGkbcjw2c+SelG4phelKDaQJgdqQmJ1OguoQHXLatsUJMBwcrd6boSfqUt41Yiv18Ug==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-day@4.2.0": {
"integrity": "sha512-V3Wd3l+/gHrmiu481MHzhpJ3Lztc3oY2/cr1wsZC0+dzvgf8ZGsZPH+DQy5IYHoX9puzUeIa7pU1bf6mXMVVcQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-division@4.2.0": {
"integrity": "sha512-5RWmZmkxxuSz4M0h3GR9XoFSGizIMsXjrry/L0YFYh7HVy8MVyrY7I4SzajtpLwbxBWh+G4g43Uula1hKpGqSA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"bignumber.js"
]
},
"@comunica/actor-function-factory-term-encode-for-uri@4.2.0": {
"integrity": "sha512-nZscihmc0w1N5kHr4TVy65gBZ/p9B6E3SZkOq7ynbZiJtcISYihYgGo7zH28eygT4XuIjnfWQrh24AcGrRYBLQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-equality@4.2.0": {
"integrity": "sha512-+bMnfco/d6GnO2uQk1GVOM3CkSz+1kCWoI+bq7m6e99VilfshTSVQdH49el0ni7cmtQuoHjroXzLv0Ctis0Veg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-floor@4.2.0": {
"integrity": "sha512-DcB/U9TWYYP5NXxANUexvbBgFFhvgOSg6s6lbph9RjizcRW2kLDBWGs/KLximidRm1DHrKey6z2m4k8oHH9P4g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-greater-than-equal@4.2.0": {
"integrity": "sha512-aNCSKytsQf6AaD6Rnbs1/DPJLvlvPnpUBim5R7dqOhqggmD5pclmAViKd7Oonq5elRck0/A8/+QRiH7KoYsj5g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-greater-than@4.2.0": {
"integrity": "sha512-Hs/S6UyR9lUWl8+WhpEe3RwFnA2undypWyVcO7j5BJ0hsYN0KNdGDATMKmloiRXGpOyqfTF2n9+pQcjxzhDDcg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-hours@4.2.0": {
"integrity": "sha512-TYzhArFJV1vPItVIM1M2pOpkmyhjZLk5UzZX4VYtXpBCH/+YDIgrqxLOxOp1JnG1RlfBywk9hcV6jEo/rNHctw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-inequality@4.2.0": {
"integrity": "sha512-Yl8nu6KiFQVPVszsm60BnWy0uLY0Tvmsl0hbCFP2q8Qrm7dLJSIakYCJy1VbQPGTQrXXEgVyrnjid2ZlzQFZJQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-iri@4.2.0": {
"integrity": "sha512-HLtn1gOUXpfJcfsfrDw+UeEKNxyMSCosyug1bAbXDO6qtG0BcM6xYHkg65m8dNEa0qm7jljHnrF0EH8Gu0QlOg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator",
"relative-to-absolute-iri"
]
},
"@comunica/actor-function-factory-term-is-blank@4.2.0": {
"integrity": "sha512-GVaCnhIHlIBBYKR7kewBUHf7fYmErX5FyTmikp9F1YhfXlL511jmLYbcENu9zSos8QWbqcFGiQ8wzBB+cJdhEg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-is-iri@4.2.0": {
"integrity": "sha512-xob3nm4z9EmvA7JR0jvf8OVTmx/P1ErOgQGH7y81awzeSjT6eQ4Y3o2e1nSbecfoaiVqObBRpEiD+E9L2H9vUw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-is-literal@4.2.0": {
"integrity": "sha512-tZxbZm+3rtGanvb6HekWiMRvkKzDndUvRAPOqXt1ht3SD0fhfHRU8yyGbUaIulvSpPkDxJAYWjiMHdxE0jlhyw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-is-numeric@4.2.0": {
"integrity": "sha512-7UumdEXwqstImhsF10K6EBxUyNf/MQ/DJQL2246lu3ZsBDL+pwUjFOEXpEjZtbvi50210NxESZXyuB2LvuBdTw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-is-triple@4.2.0": {
"integrity": "sha512-fG8wf+ZyOux18/eDncfrNDuYO4b0dAZ8SloG0Yo1X82JrZspMCkknJbFmwxp7S9GJFl/wFFxwa5d//ycEs1VvQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-lang@4.2.0": {
"integrity": "sha512-+MzyAmSHCeMEqhP6w7NWlZo7FOcHbEkVPFzBAzX1fS9hJOAKSiioKPIo5ubC8jK0vVOsWLSG0xhrRfDWwOtX2g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-langmatches@4.2.0": {
"integrity": "sha512-TtABO+iJWf1lnyEayumxAFiczmI888lhpk6k20VjEHOgCkjBDEz/6tbQiIiIWtcnC0N63TNoz0O43GmXDwv4zQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-lcase@4.2.0": {
"integrity": "sha512-wzL8z/m7/gBGY/vMXPj0gfy3g6DtiIgHLY67V0FDPe80qyYqzSE2hmbcEziANTnev9WtoG1B+JVv7u+pDEGCdw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-lesser-than-equal@4.2.0": {
"integrity": "sha512-I5zylRT2AIghY71BkTQk2PY7eYRfaPSnB+oPz6Xm5bOS7/HbCYraaayXfUVBxSg+VgBo/3ECNKgycKsxcjy2lg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-lesser-than@4.2.0": {
"integrity": "sha512-cIGAJgSTZX1DsAWO/Y+SsyeDEfA9rDN/eXk/PELyaicTJCfRS4Dqji+s8QHBkQLDs9Fhbh7/zLS4g0gCw9IHtQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-md5@4.2.0": {
"integrity": "sha512-s8DODZorW82KE+7nXrmROtk1UB5TjD9gtaz5wfNTUGUy8XgNLx11L31w6PWjzP2Sj8nRzQWgYjzyfupriGSXBQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"@types/spark-md5",
"spark-md5"
]
},
"@comunica/actor-function-factory-term-minutes@4.2.0": {
"integrity": "sha512-q3wZPiblx/V2yvX6joz7kxiwi7fac09cFeX1UuQnGLZPWkUBs1TScznWpp0SS3FpRJ/OYPoRRppAvphqg5rKeQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-month@4.2.0": {
"integrity": "sha512-yknO7g8x/M3ICf5wH3+PsFom94GlQacGfmoctJNVVwtTwJ61UWwZ7ytNvQjKII2W1afUUGQThnnE7/kF8aIVWg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-multiplication@4.2.0": {
"integrity": "sha512-LyB+ZiLelY8GCMwXsb6Y/+iWbJiJpqnuGYQ18kCTLhj9Hi2pELvjhQGmov2BGQHBkEWskzEFhZjxzqExsr5M4g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"bignumber.js"
]
},
"@comunica/actor-function-factory-term-not@4.2.0": {
"integrity": "sha512-yJg6h2ZrzWXDNiNHIx7TM71MZufywRcVS6HVqi6KvFTQdWQNbgSXic3Eq81KTCk2stB5P6EkeTXQ8r4caf2tMA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-now@4.2.0": {
"integrity": "sha512-cpcQuxNfpuRF1yYNtbGeyE4wjCtSkQ5H1PZK/DeP3NhxQquaNaOhPx9xd6yHr3VPD9S/0wrksPhH04YKn/rYFg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-object@4.2.0": {
"integrity": "sha512-iohcDBOicSbyHeJxWYBXdQ4Qu7mT8cZgNfxS5q74MIGJsY6JJtEgar4A6USP4XhmoTNMOryouDgpGHkgOG3LWA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-predicate@4.2.0": {
"integrity": "sha512-slvANEpFtjuM7d3okf+ooewth4PqmGTLMgOEhmhAkbOZ3z5IiVB0VRwk0puSUje34A7hTW7w72aISfeIcrbYgg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-rand@4.2.0": {
"integrity": "sha512-b+KJ+1UOHHDQJQXJFKOeCaqc6xDM1XB1RACsnIFYUeRX/5t2TQhQNSgU5dD7+GmGdL8F8gKVZkqyEXfhlsiJSg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-regex@4.2.0": {
"integrity": "sha512-yI3sw9SSHnx6JMnKuGrZJ3XY6mljgUpYNJ9g5yVBk2wXdgR+VxvVy02cV8b7KlucdKgGiHnrD/RQRFPVp2d3Aw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-replace@4.2.0": {
"integrity": "sha512-p9PSjEh/NudqHZF8oIibwqcMOHDUiY6joAihOM2z0F0gdGp3o1GhfRYG51+KCF5ggcWd2lByuHteMUc5mE52rQ==",
"dependencies": [
"@comunica/actor-function-factory-term-regex",
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-round@4.2.0": {
"integrity": "sha512-H86Go+WYnix3tMO511I2E5vY8VuoFkAm1G8ztBRU1vmEE8CKO2YINQ6xfA0fNpKpf8UVqI1nu3nRQ+02jUdxWg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-seconds@4.2.0": {
"integrity": "sha512-xHIlexdhabYlCZXHd18hWpLTSOIQqmRSGNQGn8ZQ78sstn+xFMULX0fo1XAsy578VJxrRlnn08Hl81sdoRfGHA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-sha1@4.2.0": {
"integrity": "sha512-Xc1S8NPlMO+c/kKZvbdt1uTOC/kOfAbfnkAg8Aj4jJrdRO0DZVeMiwOM+V2/vLyazDdvFXpVSGSixR4CbfUadw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"hash.js"
]
},
"@comunica/actor-function-factory-term-sha256@4.2.0": {
"integrity": "sha512-z3yVvZh7G8/yzx6gV8RhrCJjLwmnAjkGe+gkqzTN/Ld2G1oMh1/Mla1GFTBUHjiAZRubFT+OxyGU3Erj9QeRjA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"hash.js"
]
},
"@comunica/actor-function-factory-term-sha384@4.2.0": {
"integrity": "sha512-eWQOyulKRYIgEuWfZhPNMieH7kVsTmrIAk7s4oylJXtu9Y8CpC09zkj0TT4KRL2ns9Nqosf7EuE/E3C2VjeovA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"hash.js"
]
},
"@comunica/actor-function-factory-term-sha512@4.2.0": {
"integrity": "sha512-Ifn1ABCPzFUGAbVjin6gihISrdL1xHSPz877jxFfh49WsnRkAzD22j+yAxS/nncnMzWErDmZJL+fZsbJkbDMGg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"hash.js"
]
},
"@comunica/actor-function-factory-term-str-after@4.2.0": {
"integrity": "sha512-uiliB9CAp2kXqft7RKRCtO3HAY/0m4LTw+qKMwue4ncPfv2X13KOT9xVFI0OGQb/Zxo/KwaGu9hA/kSx+2L9og==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-before@4.2.0": {
"integrity": "sha512-6GDhOUjOuBONP1VHC3xvgpOfiyMZE93ZEWmQQToQkt+HNsRybZkcUJvpjGnib0jqsjSBoegrDdjMuIh/SZUw3A==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-dt@4.2.0": {
"integrity": "sha512-5R9XNitKgqkhIMQk8MOx8c0xoDD0BCKA9tcqcqWmb/lMD6O026tjPVc90yX663AywyL1mJFZKN5U2MgalwaChg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-ends@4.2.0": {
"integrity": "sha512-TVVpk0legazg8gNu9rQESmisCFI9VYiEmB7mERnxDXz5kveJ8TLVzkure4BxYVfIqn7dD+MI+/Gnzu9OIAG6Qg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-lang@4.2.0": {
"integrity": "sha512-CX97EePbPS3BET+BAQ+heSoG3IA+KvW9d4KAn39wegCDwPCKkXTJH4hXLZo+fj1x+8Z5+kS9NbnKltQJj5z+lA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-len@4.2.0": {
"integrity": "sha512-qC33nL8oeL8Zj4Auw+JIeLJkanqqYp6S/bD0V+NTcrEDg/+qha8zMqpYpdUkJu3LKJxQmPr+ytj/Fn/CuKBFnQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-starts@4.2.0": {
"integrity": "sha512-eRGaWPJk4ZKrZzvPfmPjqQM8aI5XXZu943ETHXXySJfZHxaiklDZPvA8OU6M2PFYXMp0KAeHnoMoyXwMAXqR4Q==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-str-uuid@4.2.0": {
"integrity": "sha512-kk3xyvmmZx/HP9Hdve0MrfuJedg97el/7DLtsfWhF3NzLzdbzZ+aH3bGDIOR8uSDniyBhqkTbeoCTgxfEwsdOg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"@types/uuid",
"uuid"
]
},
"@comunica/actor-function-factory-term-str@4.2.0": {
"integrity": "sha512-5cCYssXLuV7V6wCRXxJSTpvWm/EWKK47PV+r8XCH7XsrMY50G5lQYEj9u8dHuXMg6An5vUvJFCJJ4S2vd9T4dQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-sub-str@4.2.0": {
"integrity": "sha512-no0YtISt8oXJo7DaMJ4GR9VW2t82u8Gn0Jw+yKHspL2Up8nK0WRRDPxeRhX6pAKflb/Qa/HFI27pSWbCavPs2g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-subject@4.2.0": {
"integrity": "sha512-bkUyFKy2bunW7geVLroKtI9CudffF723hiZB8MCCopCcHLp75Q8MjxOzrxas+LJgP9KN0EllVUgPMhGUJm80fA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-subtraction@4.2.0": {
"integrity": "sha512-ixb2uG5bORM8gU7j7mcEWwIiNHjHpgkQzjq4LgtlNBh5Fndsz+200jmJyocRnGonz1Sc1BR39IvrbDB/doJCsw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/context-entries@4.2.0",
"@comunica/utils-expression-evaluator",
"bignumber.js"
]
},
"@comunica/actor-function-factory-term-timezone@4.2.0": {
"integrity": "sha512-FG/4XE8i0MPKfuiVfB/08ty4X3LDx+9NSjySP1DKDW5YDNe7HGoUC2OZ0kPuyi9QZENLwV0+2tKrgUK4Hnbu8w==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-triple@4.2.0": {
"integrity": "sha512-x5IT84sMKK2SGy2hAqMZN04EPP/lzeshEkFR+zYju308A5sCSk23GEnoR3YCtDwtC7HLxgQQIUCiWttgwGPPUQ==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-tz@4.2.0": {
"integrity": "sha512-CkfWt8pfQ5Qq/LLfor+dn0IfCFpcNfNF/FWDjJaUYsIyqRJvHeqFRTtZNPSCt3xnUskn1WCm99Se7Wi6gckeww==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-ucase@4.2.0": {
"integrity": "sha512-pBm0gs/PxHrT9joFLsv6C6I/AktEOvAJvvD2XBa4zVE39eNaatouAxzT3xyGVx8mNn3BbjKNA3rBHsnffIRHuA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-unary-minus@4.2.0": {
"integrity": "sha512-SAQRAKFXLf3qcCy0bGx6pTncB18PmQtNWU6UPxejsSXhI+yKD/z/4jvSxLFPVrhnveVv0yClC+zw/okc0aM8lg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-unary-plus@4.2.0": {
"integrity": "sha512-srkypDUAtIuux/ePalBzoSYnnCGz8Se83bzaurDsUWix336/4E7kkCXnW3EulVDCY1h9oytcSzBFlxLdJm+IwA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-uuid@4.2.0": {
"integrity": "sha512-YWIHuRqVR3uCfaEVPiPWpTJ5cgeU5Gorj/YVsDbwW6Q3soSF7Haet4FbkLzRFmcR8py2Hv4MwLEx/693Csm7Pw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator",
"@types/uuid",
"uuid"
]
},
"@comunica/actor-function-factory-term-xsd-to-boolean@4.2.0": {
"integrity": "sha512-Gs/vX1eol7kE1hWst/alPovrA0Nash6nUwq0Z/no83mxIHE9upG9jTgGCymJh6VlaYdzcugh1XuDOjqo3+HL6A==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-date@4.2.0": {
"integrity": "sha512-ujnLgY+c6jwDHaJsfhQNAXGh28i8eYTsrDsRnvu+oO3fCw04WPhmJh+mQpRjtxIUvDRNXVlvMgvEbCqjyjl6fA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-datetime@4.2.0": {
"integrity": "sha512-bfvjIP2HanUBJvNIioLVDU21AXWhxWv0BqdWkxCPQ/cTlX9GQ7NJBIrIuKQ/HoJG3RkbSRXwh0FziB9FTjaAvw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-day-time-duration@4.2.0": {
"integrity": "sha512-n66L7DkLDTUbVWT1ad9FM+llHuhT35Ypc9/3lgJcAZRT9EOfGkBH2t/4K8250NwSTKa+Z0lUC4kD6hdhKN4Nzw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-decimal@4.2.0": {
"integrity": "sha512-i2rKCbn27NFJJbQ44N0WEWQX8I5IfyG4gELu1ZkFhefEst8gXs79Mm6BiVIJv0gWHSeCcsO1hBKuOiUvXDZl9g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-double@4.2.0": {
"integrity": "sha512-rqLUOQgW36e4Brr7ZWW59m16ERCr28UOiNX6gxatoT8TICO6gKZvxgsxB+cZPEpCrLYmlpxdbwoH4Qkd7Tu5WA==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-duration@4.2.0": {
"integrity": "sha512-aarePSIbPwA5Ei93dAM0kowKxnvaSd5FdaZIqI6gAZMmo/nXOM8yrxWq0yhkgBtrfgXU4Aiph8w9aKIG8tZwcg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-float@4.2.0": {
"integrity": "sha512-d+Kz4BZ3aVRCtRW5ubF+CAwNiub6UsEHeIIi0ck0YVUvHKn2lf8QP5WaeLhzrFlv/Bebal9mYQRrVsp0k3Cy1g==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-integer@4.2.0": {
"integrity": "sha512-+iKBKVZNrsTVpD9KnoSlGA2h+GswWfTCaAFbhr0dgqNMHWSv7wBkZSUFGFzZ7Bpf4+bvRkfawDPT7xyUR3/kIw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-string@4.2.0": {
"integrity": "sha512-HKIvv3fZUtRR3z9Xqlu1pxxcVhopLNgwNH7cgKG8zdvFrQ2VJYToz1FvU9kCM2lq1TYLMOykj9rd1JTtKSbn5A==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-time@4.2.0": {
"integrity": "sha512-AOW8thLYfdqu9cQh17Bivg5ewriB9fyxaumtX5hON3ZedzcqAOTZMPf/x3DC4WkRfd3WkoYnT9S9AZG+Bn9XAg==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-xsd-to-year-month-duration@4.2.0": {
"integrity": "sha512-l20dDlL0VbUpDoSQdU47CYKLP5MdFWqh3ULkD0VR4eDqwSSclL31JR0scplbrWcda5jRGhGhBp01YQ13tyVfXw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/types@4.2.0",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-function-factory-term-year@4.2.0": {
"integrity": "sha512-Wfk3uKc+SnQEi3yjBFYeogQxBsojFAC4Ogwg2gjq5DI29nXiYWV3356tCHpscgUUfjo3nh2F8PecUBDCGmTOXw==",
"dependencies": [
"@comunica/bus-function-factory",
"@comunica/utils-expression-evaluator"
]
},
"@comunica/actor-hash-bindings-murmur@4.2.0": {
"integrity": "sha512-gEip+3zcO6NKgf0N9ti+Lx+a9CYsWQ4gNZX22GvFSRtMroqlF915Q0nkqUjOc1XHZN7OwAbYUF8Ioxwz9gEJxw==",
"dependencies": [
"@comunica/bus-hash-bindings",
"@comunica/core@4.2.0",
"@types/imurmurhash",
"imurmurhash"
]
},
"@comunica/actor-hash-quads-murmur@4.2.0": {
"integrity": "sha512-kv+hAro+VPtWp+HhT0IBRL1qAQtC7xZ78wzKiarjrOOMpfoXtvBZ4LvW4N+A8toUGALoSkAqDP1U3he+Lo7ouA==",
"dependencies": [
"@comunica/bus-hash-quads",
"@comunica/core@4.2.0",
"@types/imurmurhash",
"imurmurhash"
]
},
"@comunica/actor-http-fetch@2.10.2": {
"integrity": "sha512-siHGx0TMVNb2gXvOroq0B3JE6uuS+4s+MsDkntqdBNVigwVYqLpNSKEaL5is8pputFfohJfDQY06lAHbfDNEcw==",
"dependencies": [
"@comunica/bus-http@2.10.2",
"@comunica/context-entries@2.10.0",
"@comunica/mediatortype-time@2.10.0",
"abort-controller",
"cross-fetch@4.1.0"
]
},
"@comunica/actor-http-fetch@4.2.0": {
"integrity": "sha512-oZMNb01Jpc+e/0/b8+zRjQsNrEndfIiA6UpN0os4hROHw3QBw3ewT05g/GZUp7V+Fo/uSA4akUUqDsLKyZxRaw==",
"dependencies": [
"@comunica/bus-http@4.2.0",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/mediatortype-time@4.2.0"
]
},
"@comunica/actor-http-limit-rate@4.2.0": {
"integrity": "sha512-f24M8kDXK5BVWpqQ7zEmaMa6eww8Mixmnu8aAsNA6fUCItNSZPSNwpNdbpjzNDOhrsjHKUGPN6EZr6dQUr7HHg==",
"dependencies": [
"@comunica/bus-http@4.2.0",
"@comunica/bus-http-invalidate",
"@comunica/core@4.2.0",
"@comunica/mediatortype-time@4.2.0"
]
},
"@comunica/actor-http-proxy@2.10.2": {
"integrity": "sha512-3yUF8BCh4nwq8J6NRILEsyNrQNStkE9ggJ7hYwRfA1XcMgz1pANNaWJ2P2TEKH1jNinr23bL3JeuUZCm9Kz9dA==",
"dependencies": [
"@comunica/bus-http@2.10.2",
"@comunica/context-entries@2.10.0",
"@comunica/mediatortype-time@2.10.0",
"@comunica/types@2.10.0"
]
},
"@comunica/actor-http-proxy@4.2.0": {
"integrity": "sha512-aKJEv7mkMJiMJRTxsqPyUfjczoKDT9u/0wIWzSdW215hdW5ITAla08fD+/yIqKAD/Nz9bdZo3CSLwIMrtENmEQ==",
"dependencies": [
"@comunica/bus-http@4.2.0",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/mediatortype-time@4.2.0",
"@comunica/types@4.2.0"
]
},
"@comunica/actor-http-retry@4.2.0": {
"integrity": "sha512-sgGlGhOmDEn9GMPLubn+BtCRWc/6fxDCWk4fMFhL5iCdQ9vJHGek6qh5ZapjRYdzUUlEMC7pzMYx07dBrU9pmQ==",
"dependencies": [
"@comunica/bus-http@4.2.0",
"@comunica/bus-http-invalidate",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@comunica/mediatortype-time@4.2.0"
]
},
"@comunica/actor-http-wayback@4.2.0": {
"integrity": "sha512-NBVaeW9dSUXiHIjrV/Kxd0j7KOwopMA4cF1+JpTH1oK4lYZo6UVk3RP0tKpPwo1SIfH6jo+6fpbC9uvkDfcIxA==",
"dependencies": [
"@comunica/bus-http@4.2.0",
"@comunica/context-entries@4.2.0",
"@comunica/core@4.2.0",
"@jeswr/stream-to-string"
]
},
"@comunica/actor-init-query@4.2.0": {
"integrity": "sha512-mZVA6YrWJf0M80Rd+CL6MnzNdln38GcBXMm9FLzGRqzsldMO5v3dmePltliIeikh+4BGmZIgJrEQqrKcbDRaCw==",
"dependencies": [
"@comunica/actor-http-proxy@4.2.0",
"@comunica/bus-http-invalidate",