forked from agimus-project/happypose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoetry.lock
2768 lines (2588 loc) · 244 KB
/
poetry.lock
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
# This file is automatically @generated by Poetry and should not be changed by hand.
[[package]]
name = "alabaster"
version = "0.7.13"
description = "A configurable sidebar-enabled Sphinx theme"
category = "dev"
optional = false
python-versions = ">=3.6"
files = [
{file = "alabaster-0.7.13-py3-none-any.whl", hash = "sha256:1ee19aca801bbabb5ba3f5f258e4422dfa86f82f3e9cefb0859b283cdd7f62a3"},
{file = "alabaster-0.7.13.tar.gz", hash = "sha256:a27a4a084d5e690e16e01e03ad2b2e552c61a65469419b907243193de1a84ae2"},
]
[[package]]
name = "appnope"
version = "0.1.3"
description = "Disable App Nap on macOS >= 10.9"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"},
{file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"},
]
[[package]]
name = "asttokens"
version = "2.2.1"
description = "Annotate AST trees with source code positions"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"},
{file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"},
]
[package.dependencies]
six = "*"
[package.extras]
test = ["astroid", "pytest"]
[[package]]
name = "babel"
version = "2.12.1"
description = "Internationalization utilities"
category = "dev"
optional = false
python-versions = ">=3.7"
files = [
{file = "Babel-2.12.1-py3-none-any.whl", hash = "sha256:b4246fb7677d3b98f501a39d43396d3cafdc8eadb045f4a31be01863f655c610"},
{file = "Babel-2.12.1.tar.gz", hash = "sha256:cc2d99999cd01d44420ae725a21c9e3711b3aadc7976d6147f622d8581963455"},
]
[package.dependencies]
pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""}
[[package]]
name = "backcall"
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
category = "dev"
optional = false
python-versions = "*"
files = [
{file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
{file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
]
[[package]]
name = "black"
version = "23.3.0"
description = "The uncompromising code formatter."
category = "dev"
optional = false
python-versions = ">=3.7"
files = [
{file = "black-23.3.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915"},
{file = "black-23.3.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9"},
{file = "black-23.3.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2"},
{file = "black-23.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c"},
{file = "black-23.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c"},
{file = "black-23.3.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6"},
{file = "black-23.3.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b"},
{file = "black-23.3.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d"},
{file = "black-23.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70"},
{file = "black-23.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326"},
{file = "black-23.3.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b"},
{file = "black-23.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2"},
{file = "black-23.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925"},
{file = "black-23.3.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27"},
{file = "black-23.3.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331"},
{file = "black-23.3.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5"},
{file = "black-23.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961"},
{file = "black-23.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8"},
{file = "black-23.3.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30"},
{file = "black-23.3.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3"},
{file = "black-23.3.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266"},
{file = "black-23.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab"},
{file = "black-23.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb"},
{file = "black-23.3.0-py3-none-any.whl", hash = "sha256:ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4"},
{file = "black-23.3.0.tar.gz", hash = "sha256:1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940"},
]
[package.dependencies]
click = ">=8.0.0"
mypy-extensions = ">=0.4.3"
packaging = ">=22.0"
pathspec = ">=0.9.0"
platformdirs = ">=2"
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
[package.extras]
colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
uvloop = ["uvloop (>=0.15.2)"]
[[package]]
name = "certifi"
version = "2022.12.7"
description = "Python package for providing Mozilla's CA Bundle."
category = "dev"
optional = false
python-versions = ">=3.6"
files = [
{file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"},
{file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"},
]
[[package]]
name = "cfgv"
version = "3.3.1"
description = "Validate configuration and produce human readable error messages."
category = "dev"
optional = false
python-versions = ">=3.6.1"
files = [
{file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"},
{file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"},
]
[[package]]
name = "charset-normalizer"
version = "3.1.0"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
category = "dev"
optional = false
python-versions = ">=3.7.0"
files = [
{file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"},
{file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"},
{file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"},
{file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"},
{file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"},
{file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"},
{file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"},
{file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"},
{file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"},
{file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"},
{file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"},
{file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"},
{file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"},
{file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"},
{file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"},
{file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"},
{file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"},
{file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"},
{file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"},
{file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"},
{file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"},
{file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"},
{file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"},
{file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"},
{file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"},
{file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"},
{file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"},
{file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"},
{file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"},
{file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"},
{file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"},
{file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"},
{file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"},
{file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"},
{file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"},
{file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"},
{file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"},
{file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"},
{file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"},
{file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"},
{file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"},
{file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"},
{file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"},
{file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"},
{file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"},
{file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"},
{file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"},
{file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"},
{file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"},
{file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"},
{file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"},
{file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"},
{file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"},
{file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"},
{file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"},
{file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"},
{file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"},
{file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"},
{file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"},
{file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"},
{file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"},
{file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"},
{file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"},
]
[[package]]
name = "click"
version = "8.1.3"
description = "Composable command line interface toolkit"
category = "dev"
optional = false
python-versions = ">=3.7"
files = [
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
]
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "cmake"
version = "3.26.0"
description = "CMake is an open-source, cross-platform family of tools designed to build, test and package software"
category = "main"
optional = false
python-versions = "*"
files = [
{file = "cmake-3.26.0-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl", hash = "sha256:4881727389325af84e39f1ec646b7249d8910b4ed637205bee6d589cb2b2ebd2"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2010_i686.manylinux_2_12_i686.whl", hash = "sha256:babd1e38c85d38a4bf4164c3126ec8cf4cd8d374072e2a4a181e52e953007f8c"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:1851be29d79bb39505954165e934d31994268d49f566ead6fff840a5092e444d"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:483aaaeb9535deaa2657c928af5d9f0da9329f89bc249f494923495745a03677"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:2f78c6194f224d462333e08d3acd571c553b58d04935971b87efbe76f241353c"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:cf129c8b71f1344975f179f30287baa8804c4c61ff1b13003244b4157b676e13"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:fabb82c69223eda27e673c5c6bb02985d60cf0baa631a2e4932eed87e8229928"},
{file = "cmake-3.26.0-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:502cbed2335557920b88687c6f3ff4ce433bd416204c928ad489e399e76149f5"},
{file = "cmake-3.26.0-py2.py3-none-musllinux_1_1_aarch64.whl", hash = "sha256:b81c7775b125786c1696232078e9ceb0c9c66d26fb0a2259f40e33983170f924"},
{file = "cmake-3.26.0-py2.py3-none-musllinux_1_1_i686.whl", hash = "sha256:f4cc1dde7613cc813d15fd840a33e18cd07a443aa67205d74b9b05f55f08a459"},
{file = "cmake-3.26.0-py2.py3-none-musllinux_1_1_ppc64le.whl", hash = "sha256:ac6ca9d9ff58900138bbbebc55857647fb99f1c40b84d8a232f23b0d27d7f48a"},
{file = "cmake-3.26.0-py2.py3-none-musllinux_1_1_s390x.whl", hash = "sha256:85e0bad5aeb3a82919ed7d78b76a0462eafe2f918076a1823a09c6f37910f3e0"},
{file = "cmake-3.26.0-py2.py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:5523b9701be367572155e77294bf8aa3ac9aa0d73c50dcd6c57903d12bcb308e"},
{file = "cmake-3.26.0-py2.py3-none-win32.whl", hash = "sha256:96f0e887260255eeb83bcf3465d51bc6c94078251c9312fa142dce6d3e80acac"},
{file = "cmake-3.26.0-py2.py3-none-win_amd64.whl", hash = "sha256:a0719a6f79cdc4d7b16caf757b8ae13eae1c6ce5a08d594cc09774afe129515d"},
{file = "cmake-3.26.0-py2.py3-none-win_arm64.whl", hash = "sha256:11159c9b64c6473d84361ab44ef2c85e1bd2db7a2b1b798ce8bf5988f32adf43"},
{file = "cmake-3.26.0.tar.gz", hash = "sha256:c18185c9cc147d0fa1e9228962aa37901b37866bd5d617e9efa23dfe706f7321"},
]
[package.extras]
test = ["codecov (>=2.0.5)", "coverage (>=4.2)", "flake8 (>=3.0.4)", "path.py (>=11.5.0)", "pytest (>=3.0.3)", "pytest-cov (>=2.4.0)", "pytest-runner (>=2.9)", "pytest-virtualenv (>=1.7.0)", "scikit-build (>=0.10.0)", "setuptools (>=28.0.0)", "virtualenv (>=15.0.3)", "wheel"]
[[package]]
name = "cmeel"
version = "0.35.0"
description = "Create Wheel from CMake projects"
category = "main"
optional = false
python-versions = ">=3.7,<4.0"
files = [
{file = "cmeel-0.35.0-py3-none-any.whl", hash = "sha256:6d942d910abe5241c7a5081ec4ada94e39f2bb1baa941987a540c5bb3ae28b66"},
{file = "cmeel-0.35.0.tar.gz", hash = "sha256:e6124ab444593577386aa8cdbf27a51648cad9f324dbf01ebf51349e66c68a7a"},
]
[package.dependencies]
tomli = ">=2.0.1,<3.0.0"
[package.extras]
build = ["cmake (>=3.22.3,<4.0.0)", "packaging (>=23.0,<24.0)", "wheel (>=0.38.4,<0.39.0)"]
[[package]]
name = "cmeel-assimp"
version = "5.2.5"
description = "cmeel distribution for assimp, Open-Asset-Importer-Library Repository"
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_assimp-5.2.5-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b0fe81c5b77713dab1f668fcf7ad66c11090f443f5b7690bb253afa5dd704d33"},
{file = "cmeel_assimp-5.2.5-0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef84f047655a93a817df279aa431e471dee81b986a4f98b28a2269c5fdaacab1"},
{file = "cmeel_assimp-5.2.5-0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:b41051361b32c8f45075a28a2fb837e894b0c3b0a3c010476f0e03b9a3c995ed"},
{file = "cmeel_assimp-5.2.5-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d4f27602141079731ce5944fbe107d0e0ebddb944cab97093a88e3bd0469f838"},
{file = "cmeel_assimp-5.2.5-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ab52e94569f7f8945bfe4bd7d5dc618e739022607b8152d81196b174b9b8d63f"},
{file = "cmeel_assimp-5.2.5-0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7448b223834ec98e8b4d8b9b0ca91d68f55ba26ab31aa83406389acd3f107cd9"},
{file = "cmeel_assimp-5.2.5-0-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:2f837e0cc25580e1012f0487463072298260f7c432b66b1f36bc8a9eb976bf45"},
{file = "cmeel_assimp-5.2.5-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2edd52fd8133fdead81e0acbefde0097de19086bba6daee86773ad70e2f1c910"},
{file = "cmeel_assimp-5.2.5-0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:05d17daa970e3cf5e0841c7395f1c0cb67b36f63b85bd872ca869e560fa3ad28"},
{file = "cmeel_assimp-5.2.5-0-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:86887ff6e9bbf580aa57c5a1db11519d98968fbf1d69fc7590350802583e20ab"},
{file = "cmeel_assimp-5.2.5-0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b93febfb8d9c28d4ed209a37d3eb00689ea705a80a2d4097984187b972f5bc3"},
{file = "cmeel_assimp-5.2.5-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf48fab6bc28b5c6b63849b71c56a4f710be0c1b6affff70ed51fe1ee4e8d6e1"},
{file = "cmeel_assimp-5.2.5-0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bb6488a7a9b50ce0c2b5da7e6ad52681adbdbb0a897ea82a4754baf7c39dff2e"},
{file = "cmeel_assimp-5.2.5-0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:8b7b15857d02d5ac39c3612192c01d4983fe8a0df455ddab9e02d5adeb61dae9"},
{file = "cmeel_assimp-5.2.5-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4cf182aba68f32890da4f8fa2a1229db354cb8abfe62edc552a0a2103019339e"},
{file = "cmeel_assimp-5.2.5-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b53c04137d1d9ed78c3af60ca5408eeeceb3265c87400bef210eacaf711200e9"},
{file = "cmeel_assimp-5.2.5-0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ce8d50843086b989ee161c212c25f4e461f49a5749812457020f9eba1f81af74"},
{file = "cmeel_assimp-5.2.5-0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:19d84d2b78c01488b114a8579e3f528de5703c912e6ee1178679171d1e9a9ee4"},
{file = "cmeel_assimp-5.2.5-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e63044d6596ab7f14dad9730f6b35fb923e30da6d62bc552e745ce1ff45c126"},
{file = "cmeel_assimp-5.2.5-0-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:80057a70f495d2256754509800e65071d93360c5fde0b54dc13de00818333cf0"},
{file = "cmeel_assimp-5.2.5-0-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:fef5b2fd07c75dbadfdeae5eeb008caf1fd83623a891effe2884ae34b7c91634"},
{file = "cmeel_assimp-5.2.5-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:09e3a84d4319ed5d88ada779ac2c95d59e3be76b0be8d1cfec95fa9e7cfbde9b"},
{file = "cmeel_assimp-5.2.5-0-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:86b3f8e0e947710dd7ddb285a7d90d034391adc12fa91f36c60d69070fcf342f"},
{file = "cmeel_assimp-5.2.5-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5f87ec09c2e47ab8966c1e8b7428140aec5fb746fdd865b4cde18e1b0b41b880"},
{file = "cmeel_assimp-5.2.5-0-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c3d12b70cc5d76b68a9ad9d77de03751f3cd5c7237231880b1980a8c06d61d43"},
{file = "cmeel_assimp-5.2.5-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8685bac63d82941331b8576ce196ec54f08f106188493810b7d5bc07b459501a"},
{file = "cmeel_assimp-5.2.5-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b6a2deb727e14841deb474f8a88a512c54a58927feeb181bb65342158234c48a"},
{file = "cmeel_assimp-5.2.5-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c272b38b41ac2a5b9e18ecaed73e04f8e2733a052b473b83fdb87139a5758cc8"},
{file = "cmeel_assimp-5.2.5-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e4664ffe82ee434662144d00cdadae2c96953126f1b604d57bd2421fafad473b"},
{file = "cmeel_assimp-5.2.5-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:6e565601b49e138a1e6095ba731f8a3dd5675d3cfdfcbbf320a351e32aff9a08"},
{file = "cmeel_assimp-5.2.5-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d671abe2c51067d3fe33ce4ba88933146a65a1d3d8d7d0a15fc5bee33cfbd46"},
{file = "cmeel_assimp-5.2.5-10-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:67a42847e7ba59065144b34cf7276ac2374dab96fd66d157c438a67d500a11b4"},
{file = "cmeel_assimp-5.2.5-10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4cc98116dbe41041977ff50931b990c15d1675a74aeb9ef2eaabe29b7555d369"},
{file = "cmeel_assimp-5.2.5-10-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:e14b68f0b4135d0d25a637e44c9c04da9afdbc057c41ff54292aab2b65bc0c2c"},
{file = "cmeel_assimp-5.2.5-10-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:885a3f782136ed4f404da20e65daa512d93cf91c3260319c3c820e95b10a4b53"},
{file = "cmeel_assimp-5.2.5-10-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:74e22fcaf3a1ea2a26b8b1787f7d214f6a70a2455ee4089cb46319d7b43ee02d"},
{file = "cmeel_assimp-5.2.5-11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:83c4ce82ff9b0580db2692f092cf371999f691ddd54d950855fd2a0eff51ca75"},
{file = "cmeel_assimp-5.2.5-12-py3-none-macosx_11_0_arm64.whl", hash = "sha256:62b096dd42dfa2af1d39240f13d852dccb02304750859a65652c4e705cf64eb0"},
{file = "cmeel_assimp-5.2.5-12-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:d5f530c000af4a5b08b097a75b47900814eb08d63693b60e0f64c6aaad2725a3"},
{file = "cmeel_assimp-5.2.5-12-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:877f3ee0b29a8e963dd4fdd31946a10e361972f1b6048d4ce626d19512e37ef9"},
{file = "cmeel_assimp-5.2.5-12-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:6465bf9012d0416e50780846d2ff605da898e0d6fc984fe9abc6771041d4aaa0"},
{file = "cmeel_assimp-5.2.5-3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e48880c4f9f7df7ccb9c856b0d0cd0fa7541d24df9a1ea83af92a20802490a56"},
{file = "cmeel_assimp-5.2.5-3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07c8b73950baa9568d4792bfc2b7c100e492c72f54e548299973f1d6ab730734"},
{file = "cmeel_assimp-5.2.5-3-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:aa214ebf6539f70ce448ec2a222768dd61152a47db4f33d6c50eed2ce3a47271"},
{file = "cmeel_assimp-5.2.5-3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:61900a23f77a1dcad5684c012b1b6da3cf2dab42f467a792dbc5c200976b052e"},
{file = "cmeel_assimp-5.2.5-3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:112b4cea71fc7444b750d265edd4b14821cc0ce97ce72e2664b02d42cddd63a1"},
{file = "cmeel_assimp-5.2.5-3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6aa402c81457a941c3f9d83e286e659a0112a796358340ba6389ea161cf023b0"},
{file = "cmeel_assimp-5.2.5-3-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:06319ebd2ebe00fdbe5d137f80e818800f2e17217d60578303fcd92450f2f590"},
{file = "cmeel_assimp-5.2.5-3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ac558847b3f71063604da719351330ede1b5144336671f911d8414438b07ebd9"},
{file = "cmeel_assimp-5.2.5-3-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:264d3d3a18d40b8269ab955d77fa903ed376e35f8003f1b38e97a20c203bf889"},
{file = "cmeel_assimp-5.2.5-3-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:5fd949b25eeb5aaf371c3204202313da465acf9d191e4b17b966f85931facd45"},
{file = "cmeel_assimp-5.2.5-3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2ae7fc7820b86ff4eab45511e22f030ac3900216bd6d8892a88d4352baf5a3b2"},
{file = "cmeel_assimp-5.2.5-3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a7d366d0bbd0151072b7ceb24aca672891a2b7f787c09a02bafedd6a61b84880"},
{file = "cmeel_assimp-5.2.5-3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:77aa0d712bd2063fe086e900438f480b28bc5b8844f65712153a6c9c6f01dc66"},
{file = "cmeel_assimp-5.2.5-3-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:207451aaec46223767ec4fac418e762d47c1e1076a56bd1fc7626afedc33f561"},
{file = "cmeel_assimp-5.2.5-3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3248085586f074d48fcc2a26794a6ab9c398c524f26685635aff073aae601d6f"},
{file = "cmeel_assimp-5.2.5-3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:aa74eac5ae39bf2e725b79f645f6fe079685e454bf4d539cc9612f1553ccd742"},
{file = "cmeel_assimp-5.2.5-3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95f31286b11c8a1777e2175444996651913f6c1f569762279c0108c3aced1f7a"},
{file = "cmeel_assimp-5.2.5-3-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:31e562af95be0770033aeecc0de9de7d89fe7a1fdd946ac45294ce54ab9ffe67"},
{file = "cmeel_assimp-5.2.5-3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:819c0c0bad7730e6e700233cf8017cdaccb830a77966e7dab270e6e1e8f05830"},
{file = "cmeel_assimp-5.2.5-3-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:3f0ad441fd032d3c8f9b8132d05f52cdb8df2deb56664f9927d1f5e5de934552"},
{file = "cmeel_assimp-5.2.5-3-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:9f8ffd8324433bb59c761f6eb09c13258ca25fa4280cc7258633f4938143d398"},
{file = "cmeel_assimp-5.2.5-3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8e693eb1f46ebc5736a80cf98cbd78ce233c6fccec83da9d15798f8219d461aa"},
{file = "cmeel_assimp-5.2.5-3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:4e9d3ca207c771c1390bd6db5aea050540162d491800f9ed680040648e14dbd9"},
{file = "cmeel_assimp-5.2.5-3-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:ef8be798b8b34b84444ef2abf586e8b0dafa695064a2d34e1217f51b8ee9ca4b"},
{file = "cmeel_assimp-5.2.5-3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:82945169cb81532ce6dcff28915c1faeb524ef85c3438331149216c28816c118"},
{file = "cmeel_assimp-5.2.5-3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a4247413ad4716f53101f799e43772291a850329e59e651e1322059e7b8259a9"},
{file = "cmeel_assimp-5.2.5-3-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:13f68956ffc0c34798ff5ed063414932af10132ef6e98235a27e487fef817cdd"},
{file = "cmeel_assimp-5.2.5-4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9fe05e5018c745fbe8bf734f3a782f318a463c8add4467a5d6656423efecd243"},
{file = "cmeel_assimp-5.2.5-4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c47843e9897c600e2ac9e83fda63b565f65829034764a93044f6145f993c4912"},
{file = "cmeel_assimp-5.2.5-4-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:3b6b51c209e4dc9e8ac466c0d1f704ee3f2a4fda4c3900da276098aa695bd13a"},
{file = "cmeel_assimp-5.2.5-4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:83083a59bebd7f892fb090fa9fa467741539614d0a9d16fe79687f6331d010ba"},
{file = "cmeel_assimp-5.2.5-4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a4d7c6a11eb59719ac9bfbbbcd61fbfec89cd03b9d41324f0c92c48e16031fa"},
{file = "cmeel_assimp-5.2.5-4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:29e07e904a4d8393a41a5b993b3c3701199021debb3207203ca5613510de543a"},
{file = "cmeel_assimp-5.2.5-4-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:86356e63a2f18a23686df1c1e3bd1cbfa876ef7057abaa93ccc1da3f31961265"},
{file = "cmeel_assimp-5.2.5-4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74545bf6fcace82ab91ce39885e0435005b0964d1ad806541ad70c34a5084992"},
{file = "cmeel_assimp-5.2.5-4-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1f63d63208dac71bdd9f9f8f151446fb35cb80a6d5cd0ffe64f313a7a875cfbc"},
{file = "cmeel_assimp-5.2.5-4-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:fa2ea6a2e939f52f9807e94577ac3344d5911bbef2f56f5c21fc398ffcd77311"},
{file = "cmeel_assimp-5.2.5-4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:74ff6d134e403c334dbb9c8ae1c66deaaec67f0e928bad16e092f48d6d108b00"},
{file = "cmeel_assimp-5.2.5-4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:04ddc379b7491463c895afffb44d3b43829ce923bee46047cb2d35aa5c4dc925"},
{file = "cmeel_assimp-5.2.5-4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb4350c77d7cfbc246938593ef48ad7f29fd13b3a41f38207ae6d4b6bda2c043"},
{file = "cmeel_assimp-5.2.5-4-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:432a9e5c47099496bfa53180032cfe3587d646f48d223da2d999c95a9e31b72b"},
{file = "cmeel_assimp-5.2.5-4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:340be386a071bd56333eed1e25fcba1908154b39d1daeccd0d8f09dd0f385d95"},
{file = "cmeel_assimp-5.2.5-4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2ada292f994be2264d03b6dbc1ed897ca580524d28a91e2bdc015edd2cdf4a85"},
{file = "cmeel_assimp-5.2.5-4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:88159e103e414e08b79a09315cdec122eeea14fb1b6da75f9ecb72a65752e9e8"},
{file = "cmeel_assimp-5.2.5-4-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:d68fe473d2bb54a0150f5a70ec63c87d622855cdc0a21fa90f4761db7600eb9b"},
{file = "cmeel_assimp-5.2.5-4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ffc540b9aa8a0b127e8c7c829d321ef4eab134c01fe9565429a6c3eaabfcc637"},
{file = "cmeel_assimp-5.2.5-4-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:5a84d3f90aebc9ffabe2d3aa3b809f5a148b830a80e371bb1fe6df6800162888"},
{file = "cmeel_assimp-5.2.5-4-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:a3d04d74b0c4043a7e10ea0098fe5d2ca9570e72a7c2d859acdda691c2405a05"},
{file = "cmeel_assimp-5.2.5-4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d2f3476f7329279133ba7d3a1fe5ff4846f5624cae69a2ffb2388e393d0adfab"},
{file = "cmeel_assimp-5.2.5-4-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a77a2717ac0bc49bc8eed4732e7b080da41abfef301a0521faeb19cfe4b8fc24"},
{file = "cmeel_assimp-5.2.5-4-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:4e4db7bb9fa9a041a5c8a67af2b70ea3494f5f1940c48c01605de06ad6470cb7"},
{file = "cmeel_assimp-5.2.5-4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6954c2df01b70b550c631b8dfc482e12887a2653554830d0cad0ecf3f311b99e"},
{file = "cmeel_assimp-5.2.5-4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:2ddc3ec2ca3f9d3182a9346ab7e3f84e9f31c7ad1b27a8a36a754516509369bc"},
{file = "cmeel_assimp-5.2.5-4-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:824e92560d63ce3ebf4401d9359b0890e02191d1bc5f1d554be3defd61e8ad4f"},
{file = "cmeel_assimp-5.2.5-5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e4a1ba07b5984890c347d246d2fdb24233372da6a80a07cf86656be73207bec4"},
{file = "cmeel_assimp-5.2.5-6-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:d8c1e13d43b961a198127bd507b221e6ece24dbfa129599790ffccd1c769cf0e"},
{file = "cmeel_assimp-5.2.5-6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:0458bef842351c66c09c7d669f01dce3b0fc912582ac9086a7409feef27fdd20"},
{file = "cmeel_assimp-5.2.5-6-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:b5612b895a9bbee9e8fc631517448d29c2e106440ab1fbddd768abb0d8281009"},
{file = "cmeel_assimp-5.2.5-6-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:e6ad7553128385b887409d6147189573c7f9756952dae7058324d225e85069e7"},
{file = "cmeel_assimp-5.2.5-7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:0397f3cd6835d5a37cdb02566688223e84b813d1819ab92f4ab31de83f11c5ba"},
{file = "cmeel_assimp-5.2.5-8-py3-none-macosx_11_0_arm64.whl", hash = "sha256:24deafb30c1d7c9c1822708103a9b1193d7f7e5f2efded06739822688e182bd9"},
{file = "cmeel_assimp-5.2.5-9-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3c382e5bf7b942266a12cce4a81b8e23a987710e95f4610df1d43f7911b28449"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-boost"
version = "1.81.0"
description = "cmeel distribution for boost, which provides free peer-reviewed portable C++ source libraries."
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_boost-1.81.0-10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69b38effb61069b47ac796925dade5072c6d560fdce54fab03d45a46445540bd"},
{file = "cmeel_boost-1.81.0-10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8c59fb1a5ab97fc5bafafcff057b498151e9896487d896eaf06c3160d7a9b63"},
{file = "cmeel_boost-1.81.0-10-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:3088a0f8eee3743749e99ea922923608e1255da18ca35d47d291a51f1de4f7b2"},
{file = "cmeel_boost-1.81.0-10-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:84eb59ae337d5bb8be66c1e17e0e62ecbd5a39c46fb46873b16c872e79248c39"},
{file = "cmeel_boost-1.81.0-10-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bfdedb85e54c260feb7815476d8cd079c93565f94b3e4b9fa388da888d5aff61"},
{file = "cmeel_boost-1.81.0-10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02238c9258c3a3b475d4941bca3fc7aec879821f5f5066c7aac62476e0030e1d"},
{file = "cmeel_boost-1.81.0-10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4aa99465f402841c9f90f755478c0066470f72823b6ca8d235caae724c6abdc4"},
{file = "cmeel_boost-1.81.0-10-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:fcd458f89a3c1e41f5e4c4aac04a8abd381e7b0c4a08b8e53383d9a87cd3cfde"},
{file = "cmeel_boost-1.81.0-10-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:f7d9d69f0db3199320a8e2d21ec7c37866cee903c7017d4f7c00ad25cbc00f57"},
{file = "cmeel_boost-1.81.0-10-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:847457ce8ba3fbacd26e4bcec52804c8a911fe8a909cd180d4e7b349af6758ed"},
{file = "cmeel_boost-1.81.0-10-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:92ac138c14ccfe90364e62de451973045179b2038d70743b01aabb8c3271688b"},
{file = "cmeel_boost-1.81.0-10-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:dad0163d3905a7bf1440a701bcb67ccb3f7ff5a2d9683c1402aead4b27f34899"},
{file = "cmeel_boost-1.81.0-10-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:6ad44f738c3c292ff4b31729dba39335f3dbdc696784df9229c51ba9b9a7bf77"},
{file = "cmeel_boost-1.81.0-10-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:26c4e91e5e6347d3a92ed8871a26a319fe325382d48a0d8819da1b1988363180"},
{file = "cmeel_boost-1.81.0-10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:02a6cb1ec41a4e946ee2f3ce76cae6a54d5a61cd4dca84219c52aed3298e70e3"},
{file = "cmeel_boost-1.81.0-10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5ff4e4a9d033698c06c8cfd7da40475f11880004004266fda854652acd708f48"},
{file = "cmeel_boost-1.81.0-10-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:18fac9a9c87242c9b7ff571fa7646b3ce87fa6ea62c4b6973820921c1f18e8a2"},
{file = "cmeel_boost-1.81.0-10-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:f10381cd6da435301b69ff979dd6dfdbaec33dbaf86478845308bb74db70caf5"},
{file = "cmeel_boost-1.81.0-10-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:de218eb735dc70e52d45d701a5aa0899c5a1d59a5f3ef9067b1f183dc3550d29"},
{file = "cmeel_boost-1.81.0-10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6d1dbeefca41737e1c922d27f9850b2a186ecd31bca688e8a487982da39ff356"},
{file = "cmeel_boost-1.81.0-10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:64684f8c0cc74ff1c953b17a088615e15f9a64156787b1fde91e4e70e82b591f"},
{file = "cmeel_boost-1.81.0-10-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:86ee54c0f82783f0718d7ef8d1a7ecc26ef68d4e18328124a4c0d488abd93975"},
{file = "cmeel_boost-1.81.0-10-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:32b4e7927f0987e30682d3de2461b5310b236e4aab2942f82e5826e7c47611ee"},
{file = "cmeel_boost-1.81.0-10-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7543f4e47906f5af51717d2d0301fd9858c61de6da28b3f4d619d1ef562db565"},
{file = "cmeel_boost-1.81.0-10-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:72f03b397d8f2b8b3152d16740532ef896d77594e35f3b8e9cfa742d9d19a75d"},
{file = "cmeel_boost-1.81.0-10-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:e6ba54c38aae961271e58923d3f229035112095077eb30bdcb5abe7ebed5350a"},
{file = "cmeel_boost-1.81.0-10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:07313788f4abaad0c0be6015733c5519147acba123d466ba78c4d41fd6983d26"},
{file = "cmeel_boost-1.81.0-10-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:6309646c4355cade3f2f3e7697f32d206377ccf68b19ca31d5f4cc4df11a5baf"},
{file = "cmeel_boost-1.81.0-10-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c2685dfbdedb34e3bd2a7046503e5fbc287d5f27c1ef31ebb9e3b5fee457e7c2"},
{file = "cmeel_boost-1.81.0-10-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a957c6efc15afb8dda5b5d462621aa29f04d87d9ba388d497df6cafab6884407"},
{file = "cmeel_boost-1.81.0-10-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a5b4563e02ed2c4dccdfc01a3394a3caf8cddc38d1047ad8d84735303aeef502"},
{file = "cmeel_boost-1.81.0-10-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:b708738493cb8d871307eda7b3aa5afb64035a4b7582fe690104ee59bdca39cb"},
{file = "cmeel_boost-1.81.0-11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a965ab7a1e3a90e8f354c2882e1bdd87bf99f689213182d9b8e108d24c37b5b7"},
{file = "cmeel_boost-1.81.0-11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7cf91c64c72a63c72e9f708ca04ba773bac89176d2449b26f04ae24a93a213c0"},
{file = "cmeel_boost-1.81.0-11-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:992ba0179f433c66873ff41578dabd506c196f1d1e7cf05e935f518188cf22cf"},
{file = "cmeel_boost-1.81.0-11-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:294b73ba36603eab35101cb017dfec33b8cceb181e9e841276f6016fd5f390d8"},
{file = "cmeel_boost-1.81.0-11-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cdd96efaef328637d21b9c87a3d0f67bfc5a87384a19662efa345d77595bef40"},
{file = "cmeel_boost-1.81.0-11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0bf4bc412836dfe0ffdbab0a40188f743675b34d6b6bed25d090e15feec87b1d"},
{file = "cmeel_boost-1.81.0-11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d30748a2e240170b419fc68015a314d3aa7d10a94fd2cb1e10f16134b488d9f8"},
{file = "cmeel_boost-1.81.0-11-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:494a636a402480dcac64c71930b6f9faa91c24b6b0690a2df43f36e93972a195"},
{file = "cmeel_boost-1.81.0-11-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4ac476d41b46335580ff400743402d6fb6234c982695082674e8e3908e8d475b"},
{file = "cmeel_boost-1.81.0-11-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bbaffca8c8cb077daed421caf802e36fb89f4ce1276fa842a895cffeabd841e9"},
{file = "cmeel_boost-1.81.0-11-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:a6ad899186afd3f90c79a1c46341e8d4ab08e4acd91dc222dd787065f853c9ee"},
{file = "cmeel_boost-1.81.0-11-cp37-cp37m-macosx_12_0_x86_64.whl", hash = "sha256:af8a9da6388e512d7b151786eebf4f50fa69a7f8c24e0d1e7801369099743f52"},
{file = "cmeel_boost-1.81.0-11-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:a5816d0a9a527f236773b950f57043ee700c1bc879df659305f586d53447dd54"},
{file = "cmeel_boost-1.81.0-11-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:60efb0b96ee9b450530f939275119aad44a13b795b4de8dcd1e7d8a87e54d203"},
{file = "cmeel_boost-1.81.0-11-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:940e0845f311724a3500c5c2614e542216d6ac798dde23d74ee65928117ff494"},
{file = "cmeel_boost-1.81.0-11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:133196c5170b5a36a619cfcbc995ba68d7281630b4552bc677ea442316c028eb"},
{file = "cmeel_boost-1.81.0-11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e53fc6c8dd4b42ca01ccfa95218a2bada931c93378464e28a6959a90b71774be"},
{file = "cmeel_boost-1.81.0-11-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:8c07cfc9f13309ac7682d301e09e39f66e73e795d721508239d1aeb3c7ea8bdc"},
{file = "cmeel_boost-1.81.0-11-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:fb551a1eea6dea350201682e45991d4ef9a9a4ec61c406a5376e20bf4482f36b"},
{file = "cmeel_boost-1.81.0-11-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:29c6d0a93f24274472a570be744643ba55a2b30a067421e76551a0b7be6fc95c"},
{file = "cmeel_boost-1.81.0-11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3739705649fb73bed7d026e515c13ef798b6829687b59317559a68f0fc17151c"},
{file = "cmeel_boost-1.81.0-11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a39edf942aaea1203ac76c1f4dde051b0d22946b6801e3ca4bd90c606eb014c"},
{file = "cmeel_boost-1.81.0-11-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:90fab2da3cd92dd6da1413ccdd2c3465141752b5d79daab65dda7c492a8580f9"},
{file = "cmeel_boost-1.81.0-11-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:66e9e982b3a18674d973f62657d6bc9d3b66293f266eb3fd8661b0cda655c4ca"},
{file = "cmeel_boost-1.81.0-11-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4eecb46ddfd3c96edafd24ec105a088ebb135f23a4b4d6af90abad55914606fc"},
{file = "cmeel_boost-1.81.0-11-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:aadda27978562fa1e303023e8ee9e3feb11b2040715611a76a8d65a17fee89a5"},
{file = "cmeel_boost-1.81.0-11-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:fb8bd6c1daa5c4dc0b4dde5d5647f85f252aad3e1719443f98ac4feb016d8cf6"},
{file = "cmeel_boost-1.81.0-11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:199b4058366a413028525478b7fd60af3aae3d9455b4e27ce6b0905c5caf74d1"},
{file = "cmeel_boost-1.81.0-11-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:c802baed94a3174217ca6c653a9a83c780f2df1311cc02b1c25f9034b13b1d43"},
{file = "cmeel_boost-1.81.0-11-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:7c5ecce62227962d5f564bc49e0e284391e2ad11e87696bf8cf6b12cc9c6cde3"},
{file = "cmeel_boost-1.81.0-11-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:396c3f98fdc570a2a3592e9162a674b18e07157c22c297b8eb7f0ebf7227b9af"},
{file = "cmeel_boost-1.81.0-11-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:2d36ea1cb5ea2a52a5b39808fa458cf64fe7441ca92adbf3e8ef94fe94f5b549"},
{file = "cmeel_boost-1.81.0-11-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:3f15003d0aceb77ca6b59148a17d5f1f220251ed2d72e4fcb73b614664a3aa43"},
{file = "cmeel_boost-1.81.0-12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:32692d2e7df218e279b3b6e35efbe67770e9f969853912d1d39e4797d2209321"},
{file = "cmeel_boost-1.81.0-12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f83f82bc1019347eb9aaeed350de7686c2065dd8015dcf2e13da9d4e0163392b"},
{file = "cmeel_boost-1.81.0-12-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:c04cc597262a9dbc5e1201eb74c86b4d0df0b1ae38e29a9dcdce4ca528cf4395"},
{file = "cmeel_boost-1.81.0-12-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:996b731ac897ccdf7bd88de3b29e4e27e689f0f8c3a9b255ffa82150ac1df11b"},
{file = "cmeel_boost-1.81.0-12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6ad72df1b311981b8748f7cfbcb0ea8415e343496fe5accccc5f8f4dddfb1778"},
{file = "cmeel_boost-1.81.0-12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:67a60e6e767e9b2bc0defb1f805df28c5f658327443493cfa504e2987d42724e"},
{file = "cmeel_boost-1.81.0-12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7dc3547cb2f8d669de19c05c59369f9ca62673d6aa0dd7239ac1e38f30fa8e0f"},
{file = "cmeel_boost-1.81.0-12-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:67755fba009a7f0e46657150118cc8025f93fa9dfaa061a56cafea728b42d934"},
{file = "cmeel_boost-1.81.0-12-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:07f62b0e28a0a5f11ad7913dc7cc591842dfa5c7f67e18100632de45df46200a"},
{file = "cmeel_boost-1.81.0-12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb105154e2b203433cd932be4431281ff8d11d01b0c7bc1eb4acad7952206eba"},
{file = "cmeel_boost-1.81.0-12-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:403defee93a6ac2769e3cd2f242b232842fe3d0abe26df52bb673617014f28cb"},
{file = "cmeel_boost-1.81.0-12-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:63e61832523aac18632e05ec00bb6878c5a25288b6543cbcfc0fbcfebbee86b5"},
{file = "cmeel_boost-1.81.0-12-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:17fa3c976911840dba7ac9a2e85b744a54a94d84a421bbb763d180c050e181b4"},
{file = "cmeel_boost-1.81.0-12-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:60ce8114203e351e980d19090abdaeb1796730219710d548caf61535263211c3"},
{file = "cmeel_boost-1.81.0-12-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c6fa631ae2bb7a4b5e81e09561e47e5cbed9b73fd362b850d6e4778db752297a"},
{file = "cmeel_boost-1.81.0-12-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ce0e75ccec4d5c6c1bf7198302511c0392c517b7f1ea05e6c09c469f069dc98e"},
{file = "cmeel_boost-1.81.0-12-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:73c51282066a2f794af626d2fb90f9803a3d2b257947ac70009fabfceb3c3590"},
{file = "cmeel_boost-1.81.0-12-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:65751f57f5892f48ff47e2ac28e32ab1aa428afb89388eddd0df2de679ce021f"},
{file = "cmeel_boost-1.81.0-12-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c83c6ae6ee3eb1192ecd3fe500f055774479f10f77071d143a7e0d800fa0ad6d"},
{file = "cmeel_boost-1.81.0-12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0485300067a99202a460035d84cf82c75495e5b59f1ef86eea47016d636b90be"},
{file = "cmeel_boost-1.81.0-12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:80dbc9f8ee3b4a49c4da3e3138230a1192aa649cb445254860993a115b327a3c"},
{file = "cmeel_boost-1.81.0-12-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:05ef5d6c537d9d85ee3c22d7e95ebbc99a2f791f81eab0366785a297f5760c05"},
{file = "cmeel_boost-1.81.0-12-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:7586960cb43517d0c35615614e46682b228ea9c5d6ccf54a5d59350d1735caeb"},
{file = "cmeel_boost-1.81.0-12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ba8151bab9ab1e9f6177fde04decb1c5d9ca2b06e55dae6e1671a2eb5a4df98"},
{file = "cmeel_boost-1.81.0-12-pp37-pypy37_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4dbf30acfcc2875b11dc1b7a96e845e2bf81d302cb40cf2e3d1b61c1537d204c"},
{file = "cmeel_boost-1.81.0-12-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:0b8b629ef8dddf624f72fcee8f0e22a1d26cc481b9a6e5faa84ad340ec5ed45d"},
{file = "cmeel_boost-1.81.0-12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e860a3198d05dc693d81398d690206cb220f304e6cf2c22f4f1851f4200c5fde"},
{file = "cmeel_boost-1.81.0-12-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:c8936e320e3de023bbd48b4b0797c7e020558e8ae971eba97cf1b5f533619591"},
{file = "cmeel_boost-1.81.0-12-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:eac9940add0e1db2e9ca835a236390449cd4b29b6d233e106e1caff521c627bf"},
{file = "cmeel_boost-1.81.0-12-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb24652090f5d1598d2d4d10af1a4443b3bdf230f5580437b5f965d046e45400"},
{file = "cmeel_boost-1.81.0-12-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa64dde45657571afb6c2fa13973f8d8a5645f66faf87e90141c83cf212775fd"},
{file = "cmeel_boost-1.81.0-12-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:99a2ef4b470af46e27cbf7582233edf2af05856b36e941a5a59b6c279118555f"},
{file = "cmeel_boost-1.81.0-8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6f8b1aebfd6e9e3059a515b3696e947bc817e2b15533789e8308a594c0a90c6e"},
{file = "cmeel_boost-1.81.0-8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41cfb2641c8e55ee6a6cb95f5a7400eb6d34205ad5250c1725acf8ef34f4ac83"},
{file = "cmeel_boost-1.81.0-8-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:93916c4397add37cc5f30db8c0227a490e6e86f69a63f6e0e633f89467e466df"},
{file = "cmeel_boost-1.81.0-8-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8f9ab262a65741d25aa3975c3675077da2810da4f283b9a0d735c8c3b6907cbc"},
{file = "cmeel_boost-1.81.0-8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a898c7cc2f2b90f55911db8f926a8a00627100e54316cf1e336da027342eee5f"},
{file = "cmeel_boost-1.81.0-8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:36c53ae1be39627df3005cc119dcb1805e52e239f9210d697bc500b887e7e1d8"},
{file = "cmeel_boost-1.81.0-8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0e3a5b2bf3754269db4b607b8cc31386cf067515d9e8524418d1bb2a754dc4a9"},
{file = "cmeel_boost-1.81.0-8-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:dfb51539466d85d2b1d1fb081da14698b44538f15ff94d9f65bbb3cd017e48fb"},
{file = "cmeel_boost-1.81.0-8-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0bc262c08794dc36850e89eefd1d71defda989860c712f33d796b0688afabdfc"},
{file = "cmeel_boost-1.81.0-8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:017df5f18bb01de5e6021632d80886d296211f97a4004fdf6524a2ec212003c3"},
{file = "cmeel_boost-1.81.0-8-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:fe47a3490265587d57bfffa5dc51a61f15af8a6c2b4debffaf9124af5b671b4d"},
{file = "cmeel_boost-1.81.0-8-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:16be86569cc651345142702961480c29b11fad54b8f18d8dc36249b37f7f7b35"},
{file = "cmeel_boost-1.81.0-8-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:bbd07ccd7a6c2ee9aa89c952170c86a46de747f85a5e0b348f26e6bd6edfc575"},
{file = "cmeel_boost-1.81.0-8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dbbb24fe333ea235860c6ae73573000961c1c6cbacff406c4482e009e87c0d77"},
{file = "cmeel_boost-1.81.0-8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:267d95496ed34b9bf0aeba9bfcf2c5afa3c719b30281cb198fee26eacb63841f"},
{file = "cmeel_boost-1.81.0-8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ea1a9096632d7625059b8428518cffed0be03295094ced5dc907a26253deb1b7"},
{file = "cmeel_boost-1.81.0-8-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:44157c39a3e6cf8e2cdd5a98c5bf0bc6264ecd2aae8b6169e284f63dee7136fc"},
{file = "cmeel_boost-1.81.0-8-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:297c03e06718765cbec13e294e840fb6a7c5847788427cc066d7161e1cd5123b"},
{file = "cmeel_boost-1.81.0-8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5658556cd485beda429692ab4ec24c218fffd7150019e51b38efa1122995ec74"},
{file = "cmeel_boost-1.81.0-8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6bedd097c3a08439f2d22cb87679b4cd1b1e0ff106895e63a46ea038bc2aa0b4"},
{file = "cmeel_boost-1.81.0-8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8942c2c355addcd228e1ee5292d4814573849d70547fa375efce8395e6176a2d"},
{file = "cmeel_boost-1.81.0-8-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:1567513705b5fb572a60a9c18f23ea35e79af42fb7f7ece28e8f14c93bc94205"},
{file = "cmeel_boost-1.81.0-8-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:23dfa9b720896c7ea39dc724a3ef9bf17818a497fbf9bc863b15db5b6cdc91f0"},
{file = "cmeel_boost-1.81.0-8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c49bf7fe2ed5a389cee6454c934e155d28b5feac8d9ebe18b545741e107b41ef"},
{file = "cmeel_boost-1.81.0-8-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:a05b9793f13ee0c2f68f9da91cc0e9b3a40dbab2bec4134bd9a8463944b7b27a"},
{file = "cmeel_boost-1.81.0-8-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:06345540702978ee3d68ab9bddfc4fd14e28c4a9184d6f1cca087ad8f8907cec"},
{file = "cmeel_boost-1.81.0-8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c410b15cf608567bddb4d9d213b57f67da2e0b35c02ac340bb7c17b4c4b53c83"},
{file = "cmeel_boost-1.81.0-8-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:e3c083e36b60f4c9290e33a31d3c5e82f6b74f88f93ce925c8d44b2d204feede"},
{file = "cmeel_boost-1.81.0-8-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:dba00d6b19f1ab142b86a453029155de7b086e9fc6d542c9ae4bb55938ee2ec2"},
{file = "cmeel_boost-1.81.0-8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a8e97c2a0f0b33e63cd24ba3407e2da2eb802afbb1b6ce8bbba694908b79fb58"},
{file = "cmeel_boost-1.81.0-8-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f189098c8906f5ec6d7ab44f7283c9637833f258680aebe3d616b8196fa3404c"},
{file = "cmeel_boost-1.81.0-8-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:d3cbd8c8fad7a61b830f187d26387e1583e2783ec927c98b2688740def97712f"},
{file = "cmeel_boost-1.81.0-9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b88b70d493986e9cd29c9e737e388188cc3c469413738d0db1636eabe6171f70"},
{file = "cmeel_boost-1.81.0-9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b060ba3a764043fe4980eb6693e298037f950b52cc3df9e7471cae024e839e71"},
{file = "cmeel_boost-1.81.0-9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:be231131460e50d947705dad1f6c4f3771f9926a3998107f719bc284089f4dae"},
{file = "cmeel_boost-1.81.0-9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9f8de8d6a70d9a1e4a7b25edcd540f9c517611e91d7a1229a286ebea0e77abbf"},
{file = "cmeel_boost-1.81.0-9-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:6c492206a9488176eeab443147db33e3db7cf2778ed043044cef5fba707c711e"},
{file = "cmeel_boost-1.81.0-9-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e9f034f170f8514f84eaed8f1f00bc362b977d9ea1994fd6312ec3db6ee02ec0"},
]
[package.dependencies]
cmeel = "*"
numpy = "*"
[[package]]
name = "cmeel-console-bridge"
version = "1.0.2.1"
description = "cmeel distribution for console-bridge, A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages."
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_console_bridge-1.0.2.1-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6245409bd46c0e55caa102d5e46bc56f7e7c49ddec3482994f5af139ae7db336"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:f845b4280bfba535c49f9038431f8596a2d2c3a86e47cb13da3d88d9d46fbc1d"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:98f0da7d373a358da51a2dbe8aa2cfde3b040d476e2e82905626fd3dab0f0e0a"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:799a4fb00627d0bd5bf21ed3ead65484553aeb22466837b57f58c9c88c294de7"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0d5557d7556e2a40759cc619adab20499c79085b36126d0ca5b10fa22a71407f"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:70eb2cb6a1f9ffff5d8234948a0b9cd689dcf7fad27b0fde79f17937dd0514a3"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e7ef1b0c9fa9b00e03212f1ae540aa948e511633cf66792c5b2fe62d7cca00fb"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ce38db3bae076a8e22516f6c6864869fe1af3dbc46c65b5817c086f645514b53"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:7510af24e0ea4cb08e05238b4921440b33a547f741ad9fe142ab877bd5ee2334"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:4de1eef4d1441313396c5b86eeadfc8c55ca8d9a46c401c00de1cc5cb573e493"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:97800601767bbebb98c97ffe5ae3020c3375fd39a70d289165afb4eacfb1c530"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:37a7e70e5a3883a51d085069514f9b63867b4f991496557669968576a3be4792"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b553e8706b072c8b38e6057259a25f3ed5d5eb0041befbe99b647507de23b456"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:fcb9ec066a90a286f66a8c32f02c5f4921dc7554e0a457d74c1daff91973f7d9"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:133e4f4b587d05e89caa1a304a43728e8738925a1e89b17dc46e4bc5c4121e58"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:10ca3ccdb43fdbc5133a2e38888142d16fed4e5d4171ea88e9f952c43e30a46f"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:326ac074793d76f32364c599ab72f52790183a9a1901fb1ea2a2047af7d089a8"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:923e19d8c604544d75eab54db38c06a4de7364c0d905d680d66c5887aa48a241"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:34a4199005facbc00c3b0688391e7cd35ede0ee74f41a14b615f55353ca239f1"},
{file = "cmeel_console_bridge-1.0.2.1-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bd8585beac2fdf208c1ccca1767481939ca945be95ae3405ed0e6ef972f47f80"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:7819adbef424fbe5979e67d2fbc956ee2710ba1e00c0dfe82c75ad7e25f35292"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c208b761fccbbec802e55cf2c23e4c47706082087da4524cc42e0ecb9bf7f5a1"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7cc2dd9fa0702a3a9f5e73c23c7c2d06f49b8531d00260e75ee69cfa3de0a23b"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:0e5a94306f13227c3570022556485fd0ce210df509247d953e1ceca988029a30"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a571d07bee19c1ba1d15291390492ee96a90801fa63964d68172bda99beca7d7"},
{file = "cmeel_console_bridge-1.0.2.1-0-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c7a1c166d127e64ec9353dccf1d3347fd315904ddfd259530febf0cf1c5b0063"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:429d31140e7fcf48bf4bfb9d4dd18a5b5790f6b5f7f66446c46a5239d8d3de0a"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:01c368cfe95ea65f38c8e5724992d3f2adb657e7f3dad0a622ceeb4e49b191b9"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:315181ad8a1c40770e79085f188f3ca95a425195628e9debf811b2bac69261e8"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c5d22b12992ab6c9faac7048a2bc1ce3e772220335a881c29a77524a72069938"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6df6f05be29306f9fb38ca43fd7c2f43aec6f656ee7abc0413284d357434971c"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:868523b8018e22baaeb41d7f5576e4a04e0f9601e2842e23f97a43c13512343e"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8236be3cfbe7c45da65b39bb7d8855f3727f279d6945ae3bf0077188885f5e77"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:a57a4df697dd43d3ce002f8960dbbbf647590ce866d2b12684d484c695861021"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:1873090644b87cd3131eb38bd30b4aa6a53eaa56cf7b01aad7e02b324a7d629c"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f024a8b4f2cff29c299215914963b00d4c017835b32be50f114a23db1c5665c0"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:0e00d1404000d7ab5e744e44e25c55e2507de3f76ebc60cfe749415f2693d8f1"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:a88a78c139d397fe1b06f93952c51be9c69c98d5f078cf337738f22baf47f8e5"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:0630aeaa01788818a4a4e26a3a290e9c0d3d25578ae537bafdd57c3596b3727e"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:29812a731d28ac4aabe75d656415682dd303bfded1f6e37ed59494bd7427114b"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:52fe9e5d351b83b47e633e14aa8a63bb17847a668dbc0c35c25fc3afb9bf6877"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:661f072c90110eeb14eb1ba0482b57f1811efec1d302b20369720bae87aca157"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:516161e2478ec95215b1a574f76a3c568a8fdbebd207e52c3d99d7d90a3ba208"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:5b4b6f5e725eb6bf5c32dee14a000c8e4a9f5917fabc675ddbeff3fcf87385bc"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c650fed2c80131f57c7958c8d4761a16262e674f325257856e82295bd4f8deb9"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e14a41466637ba2dd6167cb019becdf79fa639144b2228d65f49f69cbae9ebb"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:091034dd33396794764838b14d3632f70a329e1e3f97dc9c665887367446a9d1"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:008f74f976fbdebb2d2bd1feadcc07069417b036151f2322f107d5f1ea8f8052"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:496096abce560eed36c258772abb1b2cab81c2b3d1370a4a16680f3a632fe28a"},
{file = "cmeel_console_bridge-1.0.2.1-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:834ef275329ae857c6bd1413a64f94bcfbdac064aae03a0f71711c14fe842630"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:1c96a36f62ace5f3d10b7ffb45bb8aa02b90da458b92c8bc4d7641f478fe2a0f"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:b22f382c762c13ee23e57b020febe56841dee84fef980639cf5facac3cbcf10d"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:29698c37fad77ad461493b280448bff420cae0448ac55692cc861c8b741c139e"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:6fabc837418c5c84439cb26851d1a8041970f82217b457d81debb8abd8acc142"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:56eb982926be4f9f381b4b68767b0ffb6733617bff70a568b813b2be70548b2f"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f5fcc658ca6ea3530199fc2ea84973c493ab6735820682c6b791d9b42cb65bda"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a8799981c02d8f5ab77ce29ad803c72308f406a59400674d08f7cae53ea6ba18"},
{file = "cmeel_console_bridge-1.0.2.1-1-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:44dafd8344c167d3db4928456e494c78ae6493b17fd721a32a1aa6b05ec92290"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b02e765570c7cdd75637fdd6ecc3963af0532cbdb511ebea52b58a11b73ce1c2"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:450a363e3a9ef0f3e67f1ff4eac3ecbce9a238d63071be85169428bdd2091d56"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:df1bfdc34a8cb52f8e3406cb82e7cf261440c771a4a1fad9812aca1fc76376f3"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:2f341275abc6331668eeb1db184024363cda7374d13beb922fa4c730da8c1ed8"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f2980425e4e8f9f94a2b6c1e9cfde3db2547f06606190938f35a314ff8ae524d"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad8304ba300db10be2c78276ee0ed92c2c42e5259c8f0587bb5e5d78c5306ddb"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8a7af6bb340cbb3720633d6a1f94a818164e5f0ec6d1d95090c26a3b5355a633"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:5b0cbb74cd2d267bdaffb1e29d4b6bb8489bcbd2a2e82451f843c1ea16c5e838"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:b000cf6f0dc3757ff5059fa1af5d007e8a7dca175ffe7fdd53fe4a992ec2523b"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:70f0e10d949389dd6aee66d0a3ced11216fda0fd97070a576bfae7850f0e7f8d"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:df1e72996d9e5112ba73702b03f393a6d5577ab735f5c68710d94bcd24205e5f"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:62132e26bf474ff99958a92ca1f9d3e9763797e1123c43d2df33345d120e8ef0"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:a1b133e34233d71e2441142e0fe0a38abebcc49a0d55e0168c0386387160c1dd"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:39da51d40ee4615fa6370c3e1fac4fb3880df954292544563ca5aa6ebf05852c"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:be14fe10e11516d4d52246d46eb988065b6d956485214f373269ae34de43028a"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:dff3dfb10dbc7d9452e965abd7700984d2cea69c6e80e5603fde2a7f6468d51d"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:2fe7ae9e1f109a39a05323456c8249ba81bbee8297e0b724882efea15bc303d6"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:4e112bb98f513f64c9c4275f83f2f3716c41707f161dbebe9e0637102ce19cfa"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0f4807bd8d233c7a0b60792455090e75a6bf62ef3365816c35d8b983ef1149e3"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7667dbb3c48711c7193a5cef3a67429419d6f856093e34d433d4a12e60a148fd"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02198e09610904fcd688e360c9a154f59f0327f1adad520d2e73052c550da358"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:134e8cacc29d59d736d4ab9171bc77faea4b5a959df053db033e974967584bc6"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d03204d45ac0225a5b0266c185c6329ad6d93f651ec4f94a49260b8968cb4b4e"},
{file = "cmeel_console_bridge-1.0.2.1-2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6963e8f951bb3674c2ceeccd3471f6382ae6461a39c44df8200a6a00a24d779b"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:feeeb41121eb0c1664232a0105f7ed72bcb9b24a0125108dde8cffe2a63bd272"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:1687b9a7c86c2382b463815f7a65d9495dec3c32c0a72fd29ad68fcd4012b996"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0bb76f595c520266308ae9778e7e43a3605f3941672cfe9f0e7bf77f44451b3b"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:c858934e491416fa667180276e44a3c99144d6988f9b9467f37ff6bb3375eed5"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:181cb0f98ebe5a09073af75d9dabf462007d960653f7286fd5be304d9de9aead"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:692cf50358aebde1ad0b04f8428f326b4bc72172b75879b2ba14436fdcb9fd78"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:90387c9ede94bf95c2e4ac09a6dde8883ee92792837f0a7caed8bc331ce75c7a"},
{file = "cmeel_console_bridge-1.0.2.1-2-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:352625d292f7117656ef913a4ce1208a913ec2a5b534df77e52b43baed13ea36"},
{file = "cmeel_console_bridge-1.0.2.1-3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:a13d4147be189af4bb938b2300e73312153a25eb131881dde2fde73089135671"},
{file = "cmeel_console_bridge-1.0.2.1-3-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:9338daf7d6ae49cc2efb56431d22fb25f8fc287f5c26f0702514e0439c11d2ed"},
{file = "cmeel_console_bridge-1.0.2.1-3-py3-none-manylinux_2_35_x86_64.whl", hash = "sha256:72204c3e29aa6404bdb2fe6c91f25a7d5d3d63eceefdd220993ef38a093382bc"},
{file = "cmeel_console_bridge-1.0.2.1-5-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:2fed7b6efa8c1d9e584dcbbfaea1f23b4d25d90faba79e92c90db29e1558ffc0"},
{file = "cmeel_console_bridge-1.0.2.1-5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:05060f1b61adbf694cee78e22c64775df793bc740bea1e3d2c78eef60f9dfe19"},
{file = "cmeel_console_bridge-1.0.2.1-5-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:b74c4ffeaf034ba1a978abc14ecb90930f4b04f64948b3f388aa8dfe911c3e8b"},
{file = "cmeel_console_bridge-1.0.2.1-5-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:f583fae8264940859cbeed77eb3a15a896986e43c7dcdf44a653731847f556fb"},
{file = "cmeel_console_bridge-1.0.2.1-6-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:775eb19da55da563a0f7d6b7bc8123423c768e229ef195aeadb25ca38af18922"},
{file = "cmeel_console_bridge-1.0.2.1-6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:cc70385391785a0ccfa23b1b5334920380ff8a1f02e1455379134decb3b288ae"},
{file = "cmeel_console_bridge-1.0.2.1-6-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:074bd0096ca5880490fe7578c06d4048350a2f4ba9cdc7960508a7a99f127e74"},
{file = "cmeel_console_bridge-1.0.2.1-6-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:054a1862c2d5cc99572cbf62a877c746c2add994c24b966172543ddb696917dc"},
{file = "cmeel_console_bridge-1.0.2.1-6-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:8dc11762eeb14cd990ed289e764b6ae2de4312565c69dde2a8b495c8a84323ff"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-octomap"
version = "1.9.8.1"
description = "cmeel distribution for OctoMap, An Efficient Probabilistic 3D Mapping Framework Based on Octrees"
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_octomap-1.9.8.1-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e9721a9aa6eed5d3308d15f4c9f4e12fd01e7573e4e6088820ed0f58fe79fe6e"},
{file = "cmeel_octomap-1.9.8.1-0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:cea79126fd5d3f52c18590d56cfb6f8079baec606924de6173cd8a431b2dcd90"},
{file = "cmeel_octomap-1.9.8.1-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:5e62385d62612350e86de1977371178e8abf1ab2e8b4bbee855ac131e58a36c3"},
{file = "cmeel_octomap-1.9.8.1-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1923944e6d05e2df97b2abf7c8f03d5047bce798579f3813127064bde418c272"},
{file = "cmeel_octomap-1.9.8.1-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:41df61cde5f0da8fdba1087c214066444c62b46b00a28b6effafbdf5ed7cbd71"},
{file = "cmeel_octomap-1.9.8.1-0-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:31303a1ceab6278551eb6d46c0d6c3ff295010f61d0ff94002e29bae0b0bf87f"},
{file = "cmeel_octomap-1.9.8.1-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:a1ef6eabb5a093fee5b58e480daf7c3c6ca5299c49e33d61c37f4b528b996219"},
{file = "cmeel_octomap-1.9.8.1-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f8f09b0bb8e520a170a005475f5b86edcea7ef44332a42d1a608e7c1fb3f886a"},
{file = "cmeel_octomap-1.9.8.1-0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:cda4a0ed1b5f5e63dfc7fcf52f139484db9cc390fa7e43a13782c0f05bdfded9"},
{file = "cmeel_octomap-1.9.8.1-0-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:d2bf9b2fb2295ec754f7488c081f32fd054d6b2d4a1e7ea4db374c06bc84553d"},
{file = "cmeel_octomap-1.9.8.1-0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:db4daac0790ddc83c60456d5d3c7bfff39fe33acc1f800c0550aa63d0d164d10"},
{file = "cmeel_octomap-1.9.8.1-0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:f3465c754b05f1e206a8fdf4ba6b0cea57ec869f9ae49933e3513d4c20943bc8"},
{file = "cmeel_octomap-1.9.8.1-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:af12dc2e8f5fe5cd488de51a8c27782e4c77e6a1933a39c53ea05c86334a3378"},
{file = "cmeel_octomap-1.9.8.1-0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:c3aba231d31c826dc93bd0aeafb0890d6e1fdc66fe3b1573b183460f9b866c55"},
{file = "cmeel_octomap-1.9.8.1-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:98467e3442d3272e326a0ce94e886fda06a1fa2fde7247d3ecd50b00bad55ec1"},
{file = "cmeel_octomap-1.9.8.1-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07373bf5a1cfecc37b6f366b9c2bc0c76d12714436185305ff02ba6f3948f158"},
{file = "cmeel_octomap-1.9.8.1-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:52a6c75d423b791fb6c52639757a85e64f9973c681189c74941760778150b461"},
{file = "cmeel_octomap-1.9.8.1-0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:b493f546fe850e4ae17d803082663b1af59b7382c3d88374b097d40d62e31ce8"},
{file = "cmeel_octomap-1.9.8.1-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:485aa05305751628d2e59bb40c6aef4899e29fbd8125720d3dfd25122b519b1b"},
{file = "cmeel_octomap-1.9.8.1-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1a1e5003359784bc8d134cc7eb8d610d4d418986a2a72884216c82119473d011"},
{file = "cmeel_octomap-1.9.8.1-0-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:875aeeedb02d091ad82c78e2af252fe6631e8e30402ff2c9c5783c7b3446d7a1"},
{file = "cmeel_octomap-1.9.8.1-0-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:7877c68e483d494978efea4d00a94cb3a84d81585a80ab52a107f1b1aa2db6cd"},
{file = "cmeel_octomap-1.9.8.1-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ad081c8c150d4821914e44501b4098a528a27dbaec60e70e873673e48668ff29"},
{file = "cmeel_octomap-1.9.8.1-0-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:a0a0d61fb7655d67949e282144b0ff50ba12b1eeb37ef2b0bb605c5820dc5f63"},
{file = "cmeel_octomap-1.9.8.1-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a445f960a2837b6c4feb349079219882dfbd1ffb13b02d2109e179282c8a3ef4"},
{file = "cmeel_octomap-1.9.8.1-0-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:da6411dc52ebff09f3584d2350e998e64b759653fb2ec144b8a451b1d3b9f74c"},
{file = "cmeel_octomap-1.9.8.1-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:97c29a085907463c06bcf19b32d2e1c25f07ec1e41f5085b14f3c4c9f9b2e7fc"},
{file = "cmeel_octomap-1.9.8.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f1c8736ad40240c6d6fd424383bf11c7330ce7ec015933cdf726cbca36213f45"},
{file = "cmeel_octomap-1.9.8.1-1-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:c86b70fb5894ea6d8c72905018329e417ce72717021219d927c327d9f20809b6"},
{file = "cmeel_octomap-1.9.8.1-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1740f6f101f40365deb0736d13f9d8758e27cc2986b86af1071876bbe4555f7a"},
{file = "cmeel_octomap-1.9.8.1-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd6a713434a43cd9bc1da333c595a9314148cfac64868927ce884392e7e4fc04"},
{file = "cmeel_octomap-1.9.8.1-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f6125a9d96f7f59d047c78a978ca4e12904f75302b9e1248bcf52411af35e53f"},
{file = "cmeel_octomap-1.9.8.1-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3998ab546b01fc511665466d01a9cf90e65e57f1a57a733149e12f9922d0e148"},
{file = "cmeel_octomap-1.9.8.1-1-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:9ff9fdb3f5faec0fc08c56498e2ef8640ce959420128ec3e8e7efe2af18a864c"},
{file = "cmeel_octomap-1.9.8.1-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4f1b6789c7a41a218de44da4b428f4a604ce3eece54866fd76866cd2a0a10a6a"},
{file = "cmeel_octomap-1.9.8.1-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d8674bbb3f987459eeb218abfa4dd208c69ae6ef3e1a77bcc05d4cd19d5f3d68"},
{file = "cmeel_octomap-1.9.8.1-1-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:1541afc9516c9aa4504038759fab479a08535492957715abf49e85d7f94f7b44"},
{file = "cmeel_octomap-1.9.8.1-1-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:d14798e8747b67cb3076604debedf2fa4e6f227cc4546e6bd815cd2ee2fe1ab2"},
{file = "cmeel_octomap-1.9.8.1-1-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:ceb0c0db451a1e0028e4b04c2a0787e79dc859264ef0d80b3ec6de9c971fe230"},
{file = "cmeel_octomap-1.9.8.1-1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9523da65a3547dfc59114ef95ae9936fc86305c6e46e77c512eeae19f7fd88d3"},
{file = "cmeel_octomap-1.9.8.1-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:944e06616809534fbef2d4a341d339be4a3c54f48c3edb989492640390a673b0"},
{file = "cmeel_octomap-1.9.8.1-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d05b93c2a2562ba193933584d563f9bc741f55bb6ac5d7ee23826e07eca05da3"},
{file = "cmeel_octomap-1.9.8.1-1-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:725aae1966588ada14d7c3e25969499c249314d2a5cac72ed8de63a244bb9712"},
{file = "cmeel_octomap-1.9.8.1-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:7f4c2e2f732387fdb145a0789a93de386217cd0b54d69a070ebe6abc4258c02a"},
{file = "cmeel_octomap-1.9.8.1-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f7e547e0e851fb1accfa1ce12b337286684d9a43da81ed2fb71e147e49e68d90"},
{file = "cmeel_octomap-1.9.8.1-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bed8f851656329f9d223e0bf46955dd5eaf877fc638de007352fb2ca2c4a0226"},
{file = "cmeel_octomap-1.9.8.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77044cf51e7f6b8df6f7fef32d4cf9887d6054ade17d3826e5070ba7aa60adbf"},
{file = "cmeel_octomap-1.9.8.1-1-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:970afa38d52dbb445d567c1b296b2610dc0836ff2ac0364f0be78e6cfa5426ed"},
{file = "cmeel_octomap-1.9.8.1-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:75e67a3748a39fb036de3b7f439da1114d462aff137a0643d3cbef21722b8f0f"},
{file = "cmeel_octomap-1.9.8.1-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:90bef02bcace904d6e6e1c59259dca71f6ab4fe89100f96255f199f658ded505"},
{file = "cmeel_octomap-1.9.8.1-1-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:95783fa9d0626cb9dec5befeb660ecd33828e9bad8c858e50ea928124705bf5e"},
{file = "cmeel_octomap-1.9.8.1-1-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:df9caaa7c9d22cd12f098f40157491420467fc1081a8a4df3618d4a56ad4aee4"},
{file = "cmeel_octomap-1.9.8.1-1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7745e7bbed13153f536ccfc6cf8f2c9af0726723242bbc2e9e5c31f6485befee"},
{file = "cmeel_octomap-1.9.8.1-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:0d29bf6a25ad42736b838e7f2dea17e62aea636868da3f5a4cfc28665d2e5236"},
{file = "cmeel_octomap-1.9.8.1-1-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:1796c16e9772b685789922b8c6a0dd8a61818cdbfcb7ba26915e83c50cf7bda7"},
{file = "cmeel_octomap-1.9.8.1-1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:070e9f286982eea0ffe5812a1799c615ca40f8fd4d344e3b4265b398b65f0e7c"},
{file = "cmeel_octomap-1.9.8.1-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:be98883ac8ca5cf55978961e8d37042e5c28bc69d16a10a37082043b148bd765"},
{file = "cmeel_octomap-1.9.8.1-1-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:789b3de24375ff2d4d3cb2cd3655a3d7eedf1a52254218c511424649ff9d6447"},
{file = "cmeel_octomap-1.9.8.1-2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4aadde97af959453a1cf30b10ab5a340db744fa8a2258ffc0c7f0f49c0cac2dc"},
{file = "cmeel_octomap-1.9.8.1-2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a38f6d71b0e0984ae4823017a9d608d5eb2e0a227906a9f18f6e752d7abf520"},
{file = "cmeel_octomap-1.9.8.1-2-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:209b5063780bf743b6b4af1c69fd4cc146cf763707132ce2aa0bbfe198aa39cb"},
{file = "cmeel_octomap-1.9.8.1-2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:679e56ae9c7a83c091dc5d8e95e334e02dd47a8308d72db719ee0f4a85017dc8"},
{file = "cmeel_octomap-1.9.8.1-2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:41065f8f0b423f8e50478c4770471449ce8b32e08dbbe73b5cd9f5b91363567a"},
{file = "cmeel_octomap-1.9.8.1-2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0a97657eed0e53b603dc5281ae4ff80b4e2bdd407a575e336488b9dee46ce1fa"},
{file = "cmeel_octomap-1.9.8.1-2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4250ef540db4a7585f3ccc0b7ad97417e5f10ff2447e1c2e9d4ef8d90861a572"},
{file = "cmeel_octomap-1.9.8.1-2-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:93c794855d8b92488dfe438df1737ce3b83969a8548f9a9a5944a45a932f127b"},
{file = "cmeel_octomap-1.9.8.1-2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5aecdca0a8e12a39e86c3b2225550a5acb01db021ea98b295ef6cf9b5a5d9cba"},
{file = "cmeel_octomap-1.9.8.1-2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5401dde5e3385932588419100ca33602e73d688061ac6d4aa1a1028e5a3a925c"},
{file = "cmeel_octomap-1.9.8.1-2-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:235950f396f6ac15b5ec0a4ec07af62863d6fa33bf2445415d5ccebb0f19802d"},
{file = "cmeel_octomap-1.9.8.1-2-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:f0d2b465e5f70b02588b71c270e354ecaa415a9a7a7740084e4a96f3b95dca02"},
{file = "cmeel_octomap-1.9.8.1-2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:f7b23f68936804cfc7f7176121cdf726cc305292ff3557ba9daca0c1e42eadfb"},
{file = "cmeel_octomap-1.9.8.1-2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:30f4538b6c89a5ad30ed957361c511240e1e28f27688eeb64053067e5951a546"},
{file = "cmeel_octomap-1.9.8.1-2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:70039994c120f115374e1f33b01b24a9f24f88bbe7aacef36c34c5645f4676a9"},
{file = "cmeel_octomap-1.9.8.1-2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28f7b8c2bdb11cc14a2cdd19b1611cc9250c3543379eb96bf265eb486c3ec1f0"},
{file = "cmeel_octomap-1.9.8.1-2-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:ab165b97640b91e1d77053bbad5ec676f572527b6a69d63c7714887607c6580e"},
{file = "cmeel_octomap-1.9.8.1-2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:f54b5b1a7ba1ce271743436c985f43953ccf7c030ff660078f16178d0b588216"},
{file = "cmeel_octomap-1.9.8.1-2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:af8811d51fa65b6c1717f4fd0086993c0570fd8bcf37e889c493c92211c32db3"},
{file = "cmeel_octomap-1.9.8.1-2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4d56c908f60c475349cc042c9ff4277ff21a093abc3ec5b29d4fff808e866f49"},
{file = "cmeel_octomap-1.9.8.1-2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c4047c77ac11c4989b47ccf78cf9dcc8f31e065189096d7092bd0b6d7e2a2a7a"},
{file = "cmeel_octomap-1.9.8.1-2-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:cc0535d066a815bcddef881612d414a9ababb2ce73f2fcbd404a0e6ffefc4d7a"},
{file = "cmeel_octomap-1.9.8.1-2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3d717c34ad78985795f056cd45eca014d6a16ccdd613a50785d4ccffecee4d01"},
{file = "cmeel_octomap-1.9.8.1-2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5ac02c51561f5d81517576e0b70982dcadb239542e30a1d7a056842146512490"},
{file = "cmeel_octomap-1.9.8.1-2-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:94a04247c7b2017c8e787c3738c16aac8477b8f34350f5a0d1fcd5ec998fe10a"},
{file = "cmeel_octomap-1.9.8.1-2-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c249d5d59f3b05df71393cd62cbdf2cea389087784ddd4ceec49a72ea046b74f"},
{file = "cmeel_octomap-1.9.8.1-2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fc3886be3ff7bd4241585da97ed77a28d1896d97384966e957d432372f5fb54e"},
{file = "cmeel_octomap-1.9.8.1-2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea6af32421b1fc099e611579e475c00e7e3d2a56a638d1ce95a994e30ca18dc9"},
{file = "cmeel_octomap-1.9.8.1-2-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:f3704e8e01e805431a29dc43337bba36d60ee93b14dbb774b44b26ffbad45257"},
{file = "cmeel_octomap-1.9.8.1-2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d48d7d9e19597a20e556cae7883e4ab150250cf602d2d4d325814ce2fa005ebd"},
{file = "cmeel_octomap-1.9.8.1-2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ced0cc54b65486ae3b132ac6a9f6da33f977bcaa22b62730d0aaf2c368dfb458"},
{file = "cmeel_octomap-1.9.8.1-2-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c8a0f13c2d3f6468c1a0ba81f8dbbdf143563364ce2e2d0dee0c7a143c34d60a"},
{file = "cmeel_octomap-1.9.8.1-3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:21f2331e0be5e19fe37fcbadb771a554514467f79558c5148c3edc98b206e6a0"},
{file = "cmeel_octomap-1.9.8.1-4-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:63c41d8cad55f6d24e35f6bd2e53a75be8cea59054eebc0b2745284cb68d7ecc"},
{file = "cmeel_octomap-1.9.8.1-4-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:db52c489c3fdb8d59ca5c488cae68cf9067e216f030395210fb326b104b033d6"},
{file = "cmeel_octomap-1.9.8.1-4-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:9162064b8bfeef12b0767dcd8e5db2c3f8110824321b9805bf4284328613be15"},
{file = "cmeel_octomap-1.9.8.1-5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f45f999c273eb5b8cadc44f7f49756636f7d5c38d49b2c5fd2c84685202283de"},
{file = "cmeel_octomap-1.9.8.1-6-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:3de3f84ba96d8f977764e750af7f32ac6f21bcbd40cec14b1a085fcc226b6ff9"},
{file = "cmeel_octomap-1.9.8.1-6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3765155b0b089855be2bd95b5957b4ee184a0551ea0fe0b98c1727b454393969"},
{file = "cmeel_octomap-1.9.8.1-6-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:7a96f1daacfa685de6eb46bf7472c0cbc54645fedbeee17510993f1ef3d9492d"},
{file = "cmeel_octomap-1.9.8.1-6-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2030dfb5ad98baebd48c8a5c8a85e3ff39351a8dbbae294c0e4082352523d6b3"},
{file = "cmeel_octomap-1.9.8.1-6-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:e2e5afd0c802cd7f062abf1b0228a2ebe531ffe57b8bbd2c41663fe8c5bd3949"},
{file = "cmeel_octomap-1.9.8.1-7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:7e427412be51a55831ed66f4f7e99f8d78949180402890d7911066dac156b20f"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-tinyxml"
version = "2.6.2.1"
description = "cmeel distribution for TinyXML, an obsolete thing."
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_tinyxml-2.6.2.1-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:04d613a962a813bce325f669edcfe38f5e48b56e085ffd554091a5dea9708bb5"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:b9351051d692e5c732b8cbf7e099ba55f955b2a08c20bb5ca7029e4b49e94375"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:d2980144acdabe352f6d0ec94655389ca70e46cd373d68c8d762c9d1224f154e"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b23696f01b69ab3c5182b280f548081d1c2ee5a14e47792a34931502cde09ad4"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b9d83e92a23bdee4b0fb9dc10aa505a1837e1f53af63e0ec737e36ad84c5a642"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:728eb2ea14eff37313279707ddb407e0c1a74d39b91bf038484b22610b0d78e2"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:1b38755e1fcffa6feea52b8b46ac36a7ae29301d44086e9430a28f7d9bfd2ebf"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4280aeeaeb325b39b57940f3a9c3c307faaa87c8b610f16368e3ec5c3b785588"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:e332cb217849d69e684d063953f7c3e889efad0549b56ab50f8fd4dd2ad20a4d"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:6279ef0e5aff5ed4558ab0ba8c86a1f2d37e5766da28d536f794c4f3f8ebe49c"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:11eaf4004037c0cc9c52838cb2bc33b2fe842ef7d46a4d89d2d966b86e457319"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:66ba683e8bc7230739f09b6c3e892fb178b3a3d994ebce086e1ef90cb79f2554"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9cfb5a9180f7fe3c5fba31683be7e2b8aa77e740dfa2f5a94bee82d7dd098c3"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:4b198a9b0eaf47959df32b9a5e087c05d30c59ffca8b093f06ff27dd665566a5"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:4d6f8b9ebc4b24adb9f1c9d1c7b13e0468d3c73e312feec25cc5dc7641f1bdfb"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:54eedeb4f3a8e49a66d121cab75d3f9a2bfa763adcc33c12d87c469e7b368cca"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bd94054bbbf1bca9aca78bb03a6519c094bab03179ff967f13213d296a5b309a"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:2bd4bc5762451738bae0b44b5729422349b4503e1d89ed8c96ed3467f05aaf02"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:a205472673b970c7a80fafe05cc051dc7e0983dcef4b80280edfae8cfa37cf0f"},
{file = "cmeel_tinyxml-2.6.2.1-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:88331fe5a64bc055a1dc75ee041a7f31714aefd82eb6170f893b96fd066e895a"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:d3bf672742744d6a70911643643ef2983c96423506621ca9562ddb787287b875"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:9d04dd421f648fa54671bc841b169704f1b21634735159250a65e82ad424109d"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8de8dd47599e76664db0fb16b340c66d93e3551c0301a56ad0aa45d27b53177a"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:f728e4c375e272d4d4acaeaa3e8fe2bdcb17bb0e2fa34ce7a9f4aaa3a32ec449"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6b88f0164ca37c583ab1c39fc90f6ddd19bfd6d0980f16ce0e1165110c30b387"},
{file = "cmeel_tinyxml-2.6.2.1-0-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:e156810c8177df4860b733e0c6ef74c8d22aacd1b92c35fb4a93f33256e3ad1a"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4201c047656eebfecc4cc00c059a8f09f3615773ae32c1e498755a0a1a2b4503"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ea500911b1ddb91bd9087059dc53c4ac69a4dc98357d184daf3ea81b3bb24e1c"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:60a5e5ff5907be1a7686142b687b364ebd6e42f190d3c7131c8b842d4a458ec9"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:57249452e502c289b20b10bb0f46be149ea7c267b5c691524b594f941cd539d3"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:99e9afd2d2b69562facb42ada10c98b58fe4aa8719e36df7933ee46bd932ca77"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f53a7deb456b164c977b5e88053cc95baaf7b447dea0aaac267afab9a5d9ce28"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2921973114369c0b7520f5d41895e069e2ef9ae5f35f3fe6a4d24aa240db1bfc"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:950697acc9e50c0bbcc1dc9d826f487b3f192b8e6cdc1453c4426c0b54d3567f"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:89db7a3dedc98be5e8fa019d243bb5c73c032d0377bb77721d21ad6a40530239"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c42188eccbdb904954eedc345e4f99ab6b3e000d5955070cd3a1ca1626d57c93"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:db337250f51910308d3513c335d57d8343f41c9bffd0e3c1ed9a624526feff1e"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:57f7824698e08dbe6e61a0231c2df0ccaedb98e0cbc52dd0b15f6b990de0835e"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:91693ded7a4d8e944635b0e361ac0c9a9ef3686438cb20f4446db4deb69dbe65"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:abcd362e2531b049c9f0546e5d3d61321e2b4a4b53c7ef99018ef023c3a9ca3c"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9d89a4b1047a37f5c5c1574a5eca1849a7768febde6079a3a6b874e482dd2e9c"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1fccd05095535d07bb8c62797183699a61f3e92ad6e448074b1341fd903c90f0"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:ca848401c5124a267e936754165fff991bde9a43eca5409e19dea45896821b29"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:5c34e754f5440b42db77bc5168799a4bce30505d9c36665e66504771d4a057a0"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cf7894b0da98b0bf56368fe6429f3733e4fe788f9db19d788e809a600e6038e9"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d43b231fe6014514841e12f68729ba154243b868e729dd1a2605aebd33e4401"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:171a3250a6f93e5d6a057660f37021fa66f79f9fbc31557d0d6011ab76c279b2"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:583e7d8e13f42fcaf9886805e5bfe53a73ba82e5c6fb4adafeaf17c462c7b692"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:4f763f7885b268e1631343c1a3ef8e3574f78a7e28f07fd3616871ee7da5a1ff"},
{file = "cmeel_tinyxml-2.6.2.1-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e884452d411a8d6c679f659361373c324f69e736c4b64d2acceb08c4b93448cb"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:15b4ce5e1edf3ae551a08833b7f953c49167673f0daae07bb419d8c59e9bbbae"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:3c3d031ca505d63604ec782377745f599a8df08e6e2f94f58b0b1cb84b07120b"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:05d623f390219b4b847f776fd0d111bd65f5928fa50d70696bb7a755e506640c"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:db0d750b4d2ca3eed83ee6802c86abd10836f6a4f2b32621709b9f6d06b09948"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:fb005d0b4e1ae01a6d7509bab24b68c4b1c7f2fc2ad9c271c1755cf98000820b"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:942d010eda71e1cf29777bd18583f8efe649e3a6b2914858a9504bb96c5cc5c3"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:127fd8061e07e2e75031887e4d5455a4d2a914b2608f7e23e69d5c1b79f60796"},
{file = "cmeel_tinyxml-2.6.2.1-1-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:a24a4ccf961e2d77ac82d93ee31f72a5d794088e18ec93b096de1c7212a45d6d"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7f998a3639a525625703cd165df70ac25081c258033f38ef96a7e12fd00e52f"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:426ce6e2cf8c6cc0f4a150a50fcbdf38ef288333dcdf3f9c6eb2a35de7b7724b"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:6fae6975638a06be9c702f2669902edb11ba0d8bf707382bf8a696f622135778"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7faf5297abdc678fdb91c9bce8cdf56c95aa7aee39d8455e7c96dcfbf586bdec"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:09b3477557418711abb6a3dede833938db7e1eba1edb83d483f355e5db3ee19f"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b1423e1eb0261d9639ebcdfb43631b90c2418f992f4963ab5775fa62a4464e9e"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:679ae94ddf67e2738709b49d975cd7559723d0add4dc8fd0f12ecd4c9667eab5"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:256c780eee3f16bc66f7b0fc931c5a4a4eb4f099785f80d5b9ca15b58f74749d"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:46e19fbbe7c3f0b7967f5db05daf21221cf2722fd012b9eeaccdc5dbbcf3d764"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:50525b4acc64376b0b4b9b574d8f7a1e6b3546be3c2e6ee4ea55fd58d88f2a45"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:a018e0000d7d6f60d569391a917ee69496163960f4fe2b761c4692446e973b51"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:7392849ef912667100d205e19f75831175918c1aa85ead1deecfb2a854c8efb2"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:eaa7f14efb9ccd829a459157fa45ac83cb3e0f2369cc1d8e5a8e96b9931b9087"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:fd8499709c3741d31f77af104ea97598f7f12aae1997a0f7d1a2baded192e222"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0301b1a2ec07fa0f20ad1cd7b0233f55822aec17cf39533b2d4e269c6f0fe7bf"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:929e624c859b4668ffa67c5c6322472b19257661d74078236973a259e828a15f"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:454e9e05c90bd4a401d1db0fe0eb3e4eebd7ceff8ce6296c9f0203c34fa3c1c9"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:e27d90a6ecc7978a85ca5b70960b551ba20227d57f6de10f4179febbc2152955"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e6242edf0fe2b5cb0206d08cc7e988ee39da5217b9c6edf99108b3db687253fd"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1750e80ef63084344075f6374c48847e474e7fad08b7aa80dad94399f577b615"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:909d29e56d2d545b2a4b2b06203b9b1f2cd73ae3b70c06e2026ac1a99cbff4cb"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:d57345df02a76e975acdd403d86d449c0a71b2b7b5306aa7bc8826268724de93"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:4fe32f47dc652d91d7984eb47c06ff0e50b4de8fbcfa55924690458be8769498"},
{file = "cmeel_tinyxml-2.6.2.1-2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d537bc1d785cd81465b3e8bf0f1efa666e93fb2974312ef9db2fce38251ce10e"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:a5fe96375580cab7d92c9e02ac1703a037468dff145b87b54dd4f61b09f4372c"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:ba73d692b4ae4d1a33e1f803a627a962d23db146ad4dd277451da12f7f357404"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1eea31fbe324a0e7f5246db613c66385cf4a1dbc7ca7518bb0866320be74e57a"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:3927c1c73c085d12643d63686bddd6313b85262c3fa497612d6df683b432c898"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:61b519b3488d07a70e617fdf06a3baf3c1d7a7ba637953b8d5e7f1572e0f8121"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1b75fbee702d9147992e9c0c98d8524c37c4ec5dee4ca048f4ec013d91fad64a"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d1768d1b81179cafc584b133767bcfd559dc7eb35f4052158e203c97c04c36b3"},
{file = "cmeel_tinyxml-2.6.2.1-2-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:80863946696ce7f5f6a820dbbfe43230f2b490605ea447e248c1f942a30fb867"},
{file = "cmeel_tinyxml-2.6.2.1-3-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:9182555a0962b46ff22e4de104893dbe4e68ecf81d85c0748d763a44b6283469"},
{file = "cmeel_tinyxml-2.6.2.1-3-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:dda3ee26f956e12201b1e51d8705349f2df0ab9b58727046f46efea7f8237ecc"},
{file = "cmeel_tinyxml-2.6.2.1-3-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:3dc770b6a710ae49ef37226de52c2423ef3dcabd040d2fe09c01480df2d844c3"},
{file = "cmeel_tinyxml-2.6.2.1-4-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:07fcce875c2850a74a76d54093ef6a04eddfc788fb796fd78d7d4bf762c39722"},
{file = "cmeel_tinyxml-2.6.2.1-4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5cd4c29d1f80fb0dcd2c5c0ac245548e1596c727a60f12c2ff1909cbca99d8ec"},
{file = "cmeel_tinyxml-2.6.2.1-4-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:1955d420370b2d9086fb6932a1f576cc8c5352f062d41ce9f29e1440ee498c40"},
{file = "cmeel_tinyxml-2.6.2.1-4-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:ff0174a436bfd05805d9971a431820966bf95b611ec64fcaa6da8fb223ff4e86"},
{file = "cmeel_tinyxml-2.6.2.1-4-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:7a7912726afd0755199e470cb32c258b9fd4901670f6bb5938a6366a9a7d5c21"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-urdfdom"
version = "3.1.0.1"
description = "cmeel distribution for urdfdom, URDF parser"
category = "main"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_urdfdom-3.1.0.1-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9316c72486f6ae37ef6b7281462f1997c4b96a60c41f6a94bff7f7bd6091ac39"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:9e974fda18fce18c63897be74216475d5105a49ea0ff73e42414b424229bcda9"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c32a5e666e2183f49a06d8eaac08d450ccc01da5e3531580b9219d1b3b2b1eba"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e2d38798b1bb436f0f26fb77e9fb07339b50be2c75fa54ff2b9aafb04c630c9e"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5f4312829a33c9e40abd8dbe2affea6cea283d0261158d348131443b15d07f25"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:c0a1cea8f7590d3f48aabfcf4aeb1f22d91af695db5b2dfa95010bc3db9da269"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:575dee08aab9349640b14ed918a9c5704ed769e328f62c85d292a5283bc61565"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:94175092c3a014e19b3691c1d98547a88dbc3ec94318b52645f6964a18155b8f"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:e94bef77f79917aec6a6f293adbe737d99fb63146906e04e6a2dbb4ddce54844"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:ab0ffd0dc279c3a1017e38e4fc7ec7ef79b3e7318685aa887b3923b67440cdec"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:d71a432944bf2218c2a74ce8fd08c1147ca069ea746c496159efdd988c43c700"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d565e662d8b2564be853e356795d2fdb5ff319656a889e8392e66d0ed62d98a8"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d42162f9a04aa4ad47449bce6e3d21afbc045dd7e79289f0952ca0fd183d25e4"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:b69a815720c6a4ceebef317fbcac93a3321f29504a4ed9ea7297516155cca9e1"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:eaa673302a65b325b351a4f3df05787c7e2e99c3f0f10c80f43527b5594ea718"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f94e9ab745eaabf8190ac3c7899c40a4f2b92da9049b5627fc004c540cdc77fd"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:826c0b60892bf5b29f9526449d56202957a10fffd3b7c0e045c53f1156d13428"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:059eedefcf88f6f67bd1eaf86e451c234cf4674b9ada2edda687dbf0921b6617"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ff41e40826e1731658ab4ed8ee63639e2743db0160fecd3eb0f7cf774a1dfa34"},
{file = "cmeel_urdfdom-3.1.0.1-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8472a5f8a235dc69e1ff18c4642c4e9f47273d10374f2a5a204b2b3639db0f22"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:7d3a6f50eba6fa84c3e96db719d65fef150951b90354233a5d8e8ccaad4d5e44"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:c62ed757109f55679676d45bf576cb281cd9898a8873028af69b2a3b85c0c02f"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ff7fccd93aed10d494bfeda31e09a3d5630f4c7dff356978955a67d422788713"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:43ff9612bb1b269b9d44ac28b3880d3af59d71a46a5c186339ee78093bb151ba"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f76f17710c39f6e6fed7fc4abb2cb4f3a0a7c82785e2808e07dd1e952a79ee02"},
{file = "cmeel_urdfdom-3.1.0.1-0-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:aa356e2d96979db0978fd0fb58bd8d8d5fd9286f87adfc3e8b5ccdb580d7777f"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c6c148fdfec94e4527ab48f5d2f8a45dad26457faa73afb28e472392e6e25414"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d28895446826b9967b2385f2e5086539764d2ede5eedf73a069adafa1d9c778"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:7ca063de5f47bab780be2bffcf35aad3c20863f6c91a33b69a3bcc4a19016088"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8f6826c83476109f22efc22fd5112214ccbc0dc38d2f563e086276f8c05b61b4"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ead6415b7f9be3c450c29ce4068d7a268f09a2d39f3d6b0062052da0e30793b8"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3658676e3fe9eaa63aa413a8cdfdaa435d52b5627e41202991974847509fc87c"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d1abfac051a831d3e336ab503de369dd08b858a3e31627bed07aeae7d4ca655f"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:26ac294a6d76fec9469738e8282ba1916b5c77eac92d00dfc1e16811399f0341"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:565c88f2a5da9644ee60d3f90a97d86a658a91b4d916860429dcbb29fd5a8eb6"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f2d8a9e25fd1e92bde657606a89745405fe8a6dfb4c058e0047ddeaaca0b6e8f"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:0e966f96cc56092738c5913d842022bbcbb9109b91d9e3977803e2e510542211"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:a378a03f5aeb919266d5e7417e2a282ed6d232f73fbd427ea16d247570d66db3"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:7b0fd98f8e674c15a2631e0f5a09cfd1b0bbbf23ddb4d69084a2f6e5a46b55d5"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d9112a6040996ae1416d37eb146f1476c51fd5eda2eb16c7771e36ddc9c7a22c"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a121598e3ecac00443ca42f33fc0e5c7e3d6622830269d1e2fb972a57e6b53d2"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c66fb83efa8987bb32233b956c3bae8ac7b5842d8c522ade58cd9bea0bc34b9"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:3f3de62cdddd6e7e3dc78ee16801a1a4aea8d1fe1870da51b53c09d6f092a48b"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:87a64f973c3b5177beba2a1df07f0877c963efb807465d3310d321e7bfd9936d"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e7a2e8b20199e96b345f9fc5097ed6afbcd5fc76cd396e0b0de0760214ef057b"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:aea06dc0fc5412faea32c55b5feb80f18c0d087ab4a7eb7eca5c193b4d30076f"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1d4d566ff2bad6819bba2d69b53ddb0bb488d69b4da8ce857ae0da91f3389a81"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:be8b349d665bfd58986d4fb7dccddf9e3ce2e153f1a2d800a28a9b4f270b94f2"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:5b5edb2386854d5addbccbaec087a435b727de98f3db14c6596cb9a254bd15ac"},
{file = "cmeel_urdfdom-3.1.0.1-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7861ac96427a2155ed2ff95f3f9783920141bbfae38c8dfc97b29d8a07bc0d0d"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:04a224add29a8d2648fffe6330a85796def312dd8527d46e7db4cc9d314cc4f3"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:87f929e6502d31b6a7817a9de84d44d6fb0a085fb4e9ab408fccc6c05b722557"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d9e6df279a81d9dd5e308d5c464c0f4e781dda29a47423031a234449e30dfcab"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:119b4afb0adde0b17be1123a0ac8fe3c57d33a7e75aa9d5b7157c6159f90a308"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:03bd73683af06f728d9cb128eca68f4ff24aee50df52e2cb731df2f36c3e70d1"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c3326a44182c7ec61055228a9d49a52ea1a4cf87ed610253e60d5b4f5338875c"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:3a3eaf563f68611475087e70201b6bfae9aaa42dc614c86f08977699f0a8308f"},
{file = "cmeel_urdfdom-3.1.0.1-1-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:7578d11923b79ba955518b53abf5082ada10845582a8baf7a5940a29dab9476d"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b01b38be539b707d0a2b14a804cee25d47451ce5dddfa98585b368eef30af991"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:4cd97ed5e3274dbf05e05bde7c2014e7eb698de013802d4b8624b4e20e78826c"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1ddfbb04d9826850db6e56601f98be43b7b783695821c4e8632f6605a717dee6"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:39f55d036fe81740a5ededf2eeab944dc8706edfac3a50df060f8b9aaedd43c8"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:36a14da1acad1a7bf26e61d9dc31107abd9a774603ad76ab57ee97d2cc6a234d"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp311-cp311-manylinux_2_17_x86_64.whl", hash = "sha256:1d2321e412a706bb5424ff770bf11437abd6321a06f19b1fade9f0d507b41b35"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bf839cd91115cf3c63465053d231c2edfbbd341f75b6a14c41b855e4362a85c4"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dc3bc3f8286c1a46adb1a0d03167092a56046f324e4ed5a9fe2a59e1f9957d66"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:831f3867a8f73029f08e41c7d6571e78e320d44aa1f582dd20147295b1a4953f"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp37-cp37m-manylinux_2_17_x86_64.whl", hash = "sha256:323f0e3d7c295344dd9ddf34b20eb983956a0571a9810ea3f5aec80f2b2f1874"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:5e7ca664666f1a5b26e75a8bfce81610ecda6b1b53d28c2ace4758af642427c9"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e6ae9cdaa3ea9e2ef6e9333d4a053f70d6a89d552f9013f0a955c0d9e2fe98d9"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9a7dda0d0089468a14e9e42d21e46b3dbbeccdcd178ecfb7da7bffd06b3c5f46"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:8e8f65c7e7b350e14708572d638857ffc4911b9d24cb426ee5996b0144956990"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:d38c6381438eedcef2d02385ae6a93201503fb5583978c934544e13a8cd25f4d"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:787cab0cb96cd4bc774ec0dac42bad093dba618f2d85465ddd6e0519e9174a14"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:699e49ba6b1d57135249339b4b4f50b6410c3cb7b974bba936d136c93c4406bd"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:2ba6a45e12244d9f46efa620c1d27a90088d647ceb9842e75b1a06c74f59f1d6"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:9213f0fb982ce799f6e3520dd186ace5416cb578f0b1099b2d13f3971b12466d"},
{file = "cmeel_urdfdom-3.1.0.1-2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f2135edc2397c8704175f3949eea07ff540954bddec90ba1e7a18d00d153a3d8"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp37-pypy37_pp73-macosx_12_0_x86_64.whl", hash = "sha256:79e075127e0b080b7f94f547313d70f3cf0f8731b3d0321a1f07f1f5af52b170"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp37-pypy37_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:0a3382b4e335fbf960cc2cc4e5f20c7d3d831914f03324efab4bf49cedbb3180"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7eb969eace9e7c047d3da29d367c758d1c166fea46225f70ef68e4e9387ca012"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp38-pypy38_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:4be0d83cd16570faf58162a1365580a2b6d23db3c4283786a638db970c96068e"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6dbb70ebfe850a206ff5476495ec87f4803acaabb699c7faa79aabe08f98c0a5"},
{file = "cmeel_urdfdom-3.1.0.1-2-pp39-pypy39_pp73-manylinux_2_17_x86_64.whl", hash = "sha256:3fa53d1a51ae3d41cb24e528cbf31ae54f79103a47ddea7efeccc77e49b07ee7"},
{file = "cmeel_urdfdom-3.1.0.1-3-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:5008b44ce3d31ce91d2aa8edd101fe51329bb9476d38ce928e349acae132996e"},
{file = "cmeel_urdfdom-3.1.0.1-3-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:c3dbfc13792da8ffa6948821f373a41765a2274c48a86cdbdbcc7a2094ed5491"},
{file = "cmeel_urdfdom-3.1.0.1-3-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:9ed65c061387d07faf0978eea949ccec9ff58484040ef22747cc3d85bd05b136"},
{file = "cmeel_urdfdom-3.1.0.1-4-py3-none-macosx_10_15_x86_64.whl", hash = "sha256:9c4099068ae1d2531d330effc75f599efcfe7067c93bcc0a0b4fea98dec4b563"},
{file = "cmeel_urdfdom-3.1.0.1-4-py3-none-manylinux_2_17_aarch64.whl", hash = "sha256:377196c7f877c26b9b7895952951f12e3d5b0acaf3b73a448c7b822a8a13dbb4"},
{file = "cmeel_urdfdom-3.1.0.1-4-py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:3f08f30016cb9acedb51ee3615e3d717879755b9111be1465508f86ea92c6c9a"},
]
[package.dependencies]
cmeel = "*"