├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Calibration ├── Acoustic and Optical Calibration Data │ └── CalibrationPoints.csv ├── Array Transfer Functions │ ├── Device_ATFs.h5 │ └── Device_ATFs_v2.h5 ├── Camera Intrinsics Calibration Images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── Camera_Intrinsics_Parameters_K.txt │ ├── Camera_Intrinsics_Parameters_KD.txt │ └── [Not For Calibration] Checkerboard Image Size.png └── Tracking Marker Configurations │ └── Assets.xml ├── Extra ├── Close_Microphone_Audio │ ├── ExtraSession_1 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-02-016_Participant_ID_4.wav │ │ ├── 01-02-016_Participant_ID_6.wav │ │ ├── 02-03-628_Participant_ID_4.wav │ │ ├── 02-03-628_Participant_ID_6.wav │ │ ├── 03-04-388_Participant_ID_4.wav │ │ ├── 03-04-388_Participant_ID_6.wav │ │ ├── 04-05-544_Participant_ID_4.wav │ │ ├── 04-05-544_Participant_ID_6.wav │ │ ├── 05-07-945_Participant_ID_4.wav │ │ ├── 05-07-945_Participant_ID_6.wav │ │ ├── 06-09-438_Participant_ID_4.wav │ │ ├── 06-09-438_Participant_ID_6.wav │ │ ├── 07-10-474_Participant_ID_4.wav │ │ ├── 07-10-474_Participant_ID_6.wav │ │ ├── 08-11-279_Participant_ID_4.wav │ │ ├── 08-11-279_Participant_ID_6.wav │ │ ├── 09-11-293_Participant_ID_4.wav │ │ ├── 09-11-293_Participant_ID_6.wav │ │ ├── 15-11-145_Participant_ID_4.wav │ │ ├── 15-11-145_Participant_ID_6.wav │ │ ├── 16-11-154_Participant_ID_4.wav │ │ ├── 16-11-154_Participant_ID_6.wav │ │ ├── 17-11-168_Participant_ID_4.wav │ │ ├── 17-11-168_Participant_ID_6.wav │ │ ├── 18-11-180_Participant_ID_4.wav │ │ ├── 18-11-180_Participant_ID_6.wav │ │ ├── 19-11-209_Participant_ID_4.wav │ │ ├── 19-11-209_Participant_ID_6.wav │ │ ├── 20-11-206_Participant_ID_4.wav │ │ ├── 20-11-206_Participant_ID_6.wav │ │ ├── 21-11-224_Participant_ID_4.wav │ │ ├── 21-11-224_Participant_ID_6.wav │ │ ├── 22-11-240_Participant_ID_4.wav │ │ ├── 22-11-240_Participant_ID_6.wav │ │ ├── 23-11-246_Participant_ID_4.wav │ │ ├── 23-11-246_Participant_ID_6.wav │ │ ├── 24-11-261_Participant_ID_4.wav │ │ ├── 24-11-261_Participant_ID_6.wav │ │ ├── 25-11-270_Participant_ID_4.wav │ │ ├── 25-11-270_Participant_ID_6.wav │ │ ├── 26-11-280_Participant_ID_4.wav │ │ ├── 26-11-280_Participant_ID_6.wav │ │ ├── 27-11-299_Participant_ID_4.wav │ │ └── 27-11-299_Participant_ID_6.wav │ ├── ExtraSession_2 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-596_Participant_ID_4.wav │ │ ├── 01-00-596_Participant_ID_6.wav │ │ ├── 02-02-774_Participant_ID_4.wav │ │ ├── 02-02-774_Participant_ID_6.wav │ │ ├── 03-03-171_Participant_ID_4.wav │ │ ├── 03-03-171_Participant_ID_6.wav │ │ ├── 04-05-646_Participant_ID_4.wav │ │ ├── 04-05-646_Participant_ID_6.wav │ │ ├── 05-06-998_Participant_ID_4.wav │ │ ├── 05-06-998_Participant_ID_6.wav │ │ ├── 06-09-010_Participant_ID_4.wav │ │ ├── 06-09-010_Participant_ID_6.wav │ │ ├── 07-11-095_Participant_ID_4.wav │ │ ├── 07-11-095_Participant_ID_6.wav │ │ ├── 08-13-123_Participant_ID_4.wav │ │ ├── 08-13-123_Participant_ID_6.wav │ │ ├── 09-14-966_Participant_ID_4.wav │ │ ├── 09-14-966_Participant_ID_6.wav │ │ ├── 10-15-995_Participant_ID_4.wav │ │ ├── 10-15-995_Participant_ID_6.wav │ │ ├── 11-18-048_Participant_ID_4.wav │ │ ├── 11-18-048_Participant_ID_6.wav │ │ ├── 12-20-196_Participant_ID_4.wav │ │ ├── 12-20-196_Participant_ID_6.wav │ │ ├── 13-22-217_Participant_ID_4.wav │ │ ├── 13-22-217_Participant_ID_6.wav │ │ ├── 14-24-522_Participant_ID_4.wav │ │ ├── 14-24-522_Participant_ID_6.wav │ │ ├── 15-25-810_Participant_ID_4.wav │ │ ├── 15-25-810_Participant_ID_6.wav │ │ ├── 16-27-576_Participant_ID_4.wav │ │ ├── 16-27-576_Participant_ID_6.wav │ │ ├── 17-28-782_Participant_ID_4.wav │ │ ├── 17-28-782_Participant_ID_6.wav │ │ ├── 18-30-486_Participant_ID_4.wav │ │ ├── 18-30-486_Participant_ID_6.wav │ │ ├── 19-32-834_Participant_ID_4.wav │ │ ├── 19-32-834_Participant_ID_6.wav │ │ ├── 20-34-816_Participant_ID_4.wav │ │ ├── 20-34-816_Participant_ID_6.wav │ │ ├── 21-36-693_Participant_ID_4.wav │ │ ├── 21-36-693_Participant_ID_6.wav │ │ ├── 22-38-212_Participant_ID_4.wav │ │ ├── 22-38-212_Participant_ID_6.wav │ │ ├── 23-40-216_Participant_ID_4.wav │ │ ├── 23-40-216_Participant_ID_6.wav │ │ ├── 24-42-584_Participant_ID_4.wav │ │ └── 24-42-584_Participant_ID_6.wav │ └── ExtraSession_3 │ │ ├── 00-00-000_Participant_ID_3.wav │ │ ├── 00-00-000_Participant_ID_5.wav │ │ ├── 00-00-000_Participant_ID_7.wav │ │ ├── 01-00-112_Participant_ID_3.wav │ │ ├── 01-00-112_Participant_ID_5.wav │ │ ├── 01-00-112_Participant_ID_7.wav │ │ ├── 02-00-146_Participant_ID_3.wav │ │ ├── 02-00-146_Participant_ID_5.wav │ │ ├── 02-00-146_Participant_ID_7.wav │ │ ├── 03-00-156_Participant_ID_3.wav │ │ ├── 03-00-156_Participant_ID_5.wav │ │ ├── 03-00-156_Participant_ID_7.wav │ │ ├── 04-01-965_Participant_ID_3.wav │ │ ├── 04-01-965_Participant_ID_5.wav │ │ ├── 04-01-965_Participant_ID_7.wav │ │ ├── 05-01-976_Participant_ID_3.wav │ │ ├── 05-01-976_Participant_ID_5.wav │ │ ├── 05-01-976_Participant_ID_7.wav │ │ ├── 06-02-003_Participant_ID_3.wav │ │ ├── 06-02-003_Participant_ID_5.wav │ │ ├── 06-02-003_Participant_ID_7.wav │ │ ├── 07-01-992_Participant_ID_3.wav │ │ ├── 07-01-992_Participant_ID_5.wav │ │ ├── 07-01-992_Participant_ID_7.wav │ │ ├── 08-02-018_Participant_ID_3.wav │ │ ├── 08-02-018_Participant_ID_5.wav │ │ ├── 08-02-018_Participant_ID_7.wav │ │ ├── 09-02-044_Participant_ID_3.wav │ │ ├── 09-02-044_Participant_ID_5.wav │ │ ├── 09-02-044_Participant_ID_7.wav │ │ ├── 10-02-028_Participant_ID_3.wav │ │ ├── 10-02-028_Participant_ID_5.wav │ │ ├── 10-02-028_Participant_ID_7.wav │ │ ├── 11-02-045_Participant_ID_3.wav │ │ ├── 11-02-045_Participant_ID_5.wav │ │ ├── 11-02-045_Participant_ID_7.wav │ │ ├── 12-02-066_Participant_ID_3.wav │ │ ├── 12-02-066_Participant_ID_5.wav │ │ ├── 12-02-066_Participant_ID_7.wav │ │ ├── 13-02-083_Participant_ID_3.wav │ │ ├── 13-02-083_Participant_ID_5.wav │ │ ├── 13-02-083_Participant_ID_7.wav │ │ ├── 14-02-101_Participant_ID_3.wav │ │ ├── 14-02-101_Participant_ID_5.wav │ │ ├── 14-02-101_Participant_ID_7.wav │ │ ├── 15-02-100_Participant_ID_3.wav │ │ ├── 15-02-100_Participant_ID_5.wav │ │ ├── 15-02-100_Participant_ID_7.wav │ │ ├── 16-02-119_Participant_ID_3.wav │ │ ├── 16-02-119_Participant_ID_5.wav │ │ ├── 16-02-119_Participant_ID_7.wav │ │ ├── 17-02-131_Participant_ID_3.wav │ │ ├── 17-02-131_Participant_ID_5.wav │ │ ├── 17-02-131_Participant_ID_7.wav │ │ ├── 18-02-143_Participant_ID_3.wav │ │ ├── 18-02-143_Participant_ID_5.wav │ │ ├── 18-02-143_Participant_ID_7.wav │ │ ├── 19-02-150_Participant_ID_3.wav │ │ ├── 19-02-150_Participant_ID_5.wav │ │ ├── 19-02-150_Participant_ID_7.wav │ │ ├── 20-02-192_Participant_ID_3.wav │ │ ├── 20-02-192_Participant_ID_5.wav │ │ ├── 20-02-192_Participant_ID_7.wav │ │ ├── 21-02-177_Participant_ID_3.wav │ │ ├── 21-02-177_Participant_ID_5.wav │ │ ├── 21-02-177_Participant_ID_7.wav │ │ ├── 22-02-187_Participant_ID_3.wav │ │ ├── 22-02-187_Participant_ID_5.wav │ │ ├── 22-02-187_Participant_ID_7.wav │ │ ├── 23-02-225_Participant_ID_3.wav │ │ ├── 23-02-225_Participant_ID_5.wav │ │ ├── 23-02-225_Participant_ID_7.wav │ │ ├── 24-02-213_Participant_ID_3.wav │ │ ├── 24-02-213_Participant_ID_5.wav │ │ ├── 24-02-213_Participant_ID_7.wav │ │ ├── 25-02-252_Participant_ID_3.wav │ │ ├── 25-02-252_Participant_ID_5.wav │ │ ├── 25-02-252_Participant_ID_7.wav │ │ ├── 26-02-249_Participant_ID_3.wav │ │ ├── 26-02-249_Participant_ID_5.wav │ │ ├── 26-02-249_Participant_ID_7.wav │ │ ├── 27-02-254_Participant_ID_3.wav │ │ ├── 27-02-254_Participant_ID_5.wav │ │ ├── 27-02-254_Participant_ID_7.wav │ │ ├── 28-02-263_Participant_ID_3.wav │ │ ├── 28-02-263_Participant_ID_5.wav │ │ └── 28-02-263_Participant_ID_7.wav ├── Frame_Drops │ ├── ExtraSession_1 │ │ ├── 00-00-000.txt │ │ ├── 01-02-016.txt │ │ ├── 02-03-628.txt │ │ ├── 03-04-388.txt │ │ ├── 04-05-544.txt │ │ ├── 05-07-945.txt │ │ ├── 06-09-438.txt │ │ ├── 07-10-474.txt │ │ ├── 08-11-279.txt │ │ └── 09-11-293.txt │ ├── ExtraSession_2 │ │ ├── 01-00-596.txt │ │ ├── 02-02-774.txt │ │ ├── 03-03-171.txt │ │ ├── 04-05-646.txt │ │ ├── 05-06-998.txt │ │ ├── 06-09-010.txt │ │ ├── 07-11-095.txt │ │ ├── 08-13-123.txt │ │ ├── 09-14-966.txt │ │ ├── 10-15-995.txt │ │ ├── 11-18-048.txt │ │ ├── 12-20-196.txt │ │ ├── 13-22-217.txt │ │ ├── 14-24-522.txt │ │ ├── 15-25-810.txt │ │ ├── 16-27-576.txt │ │ ├── 17-28-782.txt │ │ ├── 18-30-486.txt │ │ ├── 19-32-834.txt │ │ ├── 20-34-816.txt │ │ ├── 21-36-693.txt │ │ ├── 22-38-212.txt │ │ ├── 23-40-216.txt │ │ └── 24-42-584.txt │ └── ExtraSession_3 │ │ └── 03-00-156.txt ├── Glasses_Microphone_Array_Audio │ ├── ExtraSession_1 │ │ ├── 00-00-000.wav │ │ ├── 01-02-016.wav │ │ ├── 02-03-628.wav │ │ ├── 03-04-388.wav │ │ ├── 04-05-544.wav │ │ ├── 05-07-945.wav │ │ ├── 06-09-438.wav │ │ ├── 07-10-474.wav │ │ ├── 08-11-279.wav │ │ ├── 09-11-293.wav │ │ ├── 15-11-145.wav │ │ ├── 16-11-154.wav │ │ ├── 17-11-168.wav │ │ ├── 18-11-180.wav │ │ ├── 19-11-209.wav │ │ ├── 20-11-206.wav │ │ ├── 21-11-224.wav │ │ ├── 22-11-240.wav │ │ ├── 23-11-246.wav │ │ ├── 24-11-261.wav │ │ ├── 25-11-270.wav │ │ ├── 26-11-280.wav │ │ └── 27-11-299.wav │ ├── ExtraSession_2 │ │ ├── 00-00-000.wav │ │ ├── 01-00-596.wav │ │ ├── 02-02-774.wav │ │ ├── 03-03-171.wav │ │ ├── 04-05-646.wav │ │ ├── 05-06-998.wav │ │ ├── 06-09-010.wav │ │ ├── 07-11-095.wav │ │ ├── 08-13-123.wav │ │ ├── 09-14-966.wav │ │ ├── 10-15-995.wav │ │ ├── 11-18-048.wav │ │ ├── 12-20-196.wav │ │ ├── 13-22-217.wav │ │ ├── 14-24-522.wav │ │ ├── 15-25-810.wav │ │ ├── 16-27-576.wav │ │ ├── 17-28-782.wav │ │ ├── 18-30-486.wav │ │ ├── 19-32-834.wav │ │ ├── 20-34-816.wav │ │ ├── 21-36-693.wav │ │ ├── 22-38-212.wav │ │ ├── 23-40-216.wav │ │ └── 24-42-584.wav │ └── ExtraSession_3 │ │ ├── 00-00-000.wav │ │ ├── 01-00-112.wav │ │ ├── 02-00-146.wav │ │ ├── 03-00-156.wav │ │ ├── 04-01-965.wav │ │ ├── 05-01-976.wav │ │ ├── 06-02-003.wav │ │ ├── 07-01-992.wav │ │ ├── 08-02-018.wav │ │ ├── 09-02-044.wav │ │ ├── 10-02-028.wav │ │ ├── 11-02-045.wav │ │ ├── 12-02-066.wav │ │ ├── 13-02-083.wav │ │ ├── 14-02-101.wav │ │ ├── 15-02-100.wav │ │ ├── 16-02-119.wav │ │ ├── 17-02-131.wav │ │ ├── 18-02-143.wav │ │ ├── 19-02-150.wav │ │ ├── 20-02-192.wav │ │ ├── 21-02-177.wav │ │ ├── 22-02-187.wav │ │ ├── 23-02-225.wav │ │ ├── 24-02-213.wav │ │ ├── 25-02-252.wav │ │ ├── 26-02-249.wav │ │ ├── 27-02-254.wav │ │ └── 28-02-263.wav ├── Metadata │ ├── ExtraSession_1.txt │ ├── ExtraSession_2.txt │ └── ExtraSession_3.txt ├── Participant_Photos │ ├── ExtraSession_1 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── ExtraSession_2 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ └── ExtraSession_3 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png ├── Tracked_Poses │ ├── ExtraSession_1 │ │ ├── 00-00-000.json │ │ ├── 01-02-016.json │ │ ├── 02-03-628.json │ │ ├── 03-04-388.json │ │ ├── 04-05-544.json │ │ ├── 05-07-945.json │ │ ├── 06-09-438.json │ │ ├── 07-10-474.json │ │ ├── 08-11-279.json │ │ ├── 09-11-293.json │ │ ├── 15-11-145.json │ │ ├── 16-11-154.json │ │ ├── 17-11-168.json │ │ ├── 18-11-180.json │ │ ├── 19-11-209.json │ │ ├── 20-11-206.json │ │ ├── 21-11-224.json │ │ ├── 22-11-240.json │ │ ├── 23-11-246.json │ │ ├── 24-11-261.json │ │ ├── 25-11-270.json │ │ ├── 26-11-280.json │ │ └── 27-11-299.json │ ├── ExtraSession_2 │ │ ├── 00-00-000.json │ │ ├── 01-00-596.json │ │ ├── 02-02-774.json │ │ ├── 03-03-171.json │ │ ├── 04-05-646.json │ │ ├── 05-06-998.json │ │ ├── 06-09-010.json │ │ ├── 07-11-095.json │ │ ├── 08-13-123.json │ │ ├── 09-14-966.json │ │ ├── 10-15-995.json │ │ ├── 11-18-048.json │ │ ├── 12-20-196.json │ │ ├── 13-22-217.json │ │ ├── 14-24-522.json │ │ ├── 15-25-810.json │ │ ├── 16-27-576.json │ │ ├── 17-28-782.json │ │ ├── 18-30-486.json │ │ ├── 19-32-834.json │ │ ├── 20-34-816.json │ │ ├── 21-36-693.json │ │ ├── 22-38-212.json │ │ ├── 23-40-216.json │ │ └── 24-42-584.json │ └── ExtraSession_3 │ │ ├── 00-00-000.json │ │ ├── 01-00-112.json │ │ ├── 02-00-146.json │ │ ├── 03-00-156.json │ │ ├── 04-01-965.json │ │ ├── 05-01-976.json │ │ ├── 06-02-003.json │ │ ├── 07-01-992.json │ │ ├── 08-02-018.json │ │ ├── 09-02-044.json │ │ ├── 10-02-028.json │ │ ├── 11-02-045.json │ │ ├── 12-02-066.json │ │ ├── 13-02-083.json │ │ ├── 14-02-101.json │ │ ├── 15-02-100.json │ │ ├── 16-02-119.json │ │ ├── 17-02-131.json │ │ ├── 18-02-143.json │ │ ├── 19-02-150.json │ │ ├── 20-02-192.json │ │ ├── 21-02-177.json │ │ ├── 22-02-187.json │ │ ├── 23-02-225.json │ │ ├── 24-02-213.json │ │ ├── 25-02-252.json │ │ ├── 26-02-249.json │ │ ├── 27-02-254.json │ │ └── 28-02-263.json └── Video_Compressed │ ├── ExtraSession_1 │ ├── 00-00-000.mp4 │ ├── 01-02-016.mp4 │ ├── 02-03-628.mp4 │ ├── 03-04-388.mp4 │ ├── 04-05-544.mp4 │ ├── 05-07-945.mp4 │ ├── 06-09-438.mp4 │ ├── 07-10-474.mp4 │ ├── 08-11-279.mp4 │ ├── 09-11-293.mp4 │ ├── 15-11-145.mp4 │ ├── 16-11-154.mp4 │ ├── 17-11-168.mp4 │ ├── 18-11-180.mp4 │ ├── 19-11-209.mp4 │ ├── 20-11-206.mp4 │ ├── 21-11-224.mp4 │ ├── 22-11-240.mp4 │ ├── 23-11-246.mp4 │ ├── 24-11-261.mp4 │ ├── 25-11-270.mp4 │ ├── 26-11-280.mp4 │ └── 27-11-299.mp4 │ ├── ExtraSession_2 │ ├── 00-00-000.mp4 │ ├── 01-00-596.mp4 │ ├── 02-02-774.mp4 │ ├── 03-03-171.mp4 │ ├── 04-05-646.mp4 │ ├── 05-06-998.mp4 │ ├── 06-09-010.mp4 │ ├── 07-11-095.mp4 │ ├── 08-13-123.mp4 │ ├── 09-14-966.mp4 │ ├── 10-15-995.mp4 │ ├── 11-18-048.mp4 │ ├── 12-20-196.mp4 │ ├── 13-22-217.mp4 │ ├── 14-24-522.mp4 │ ├── 15-25-810.mp4 │ ├── 16-27-576.mp4 │ ├── 17-28-782.mp4 │ ├── 18-30-486.mp4 │ ├── 19-32-834.mp4 │ ├── 20-34-816.mp4 │ ├── 21-36-693.mp4 │ ├── 22-38-212.mp4 │ ├── 23-40-216.mp4 │ └── 24-42-584.mp4 │ └── ExtraSession_3 │ ├── 00-00-000.mp4 │ ├── 01-00-112.mp4 │ ├── 02-00-146.mp4 │ ├── 03-00-156.mp4 │ ├── 04-01-965.mp4 │ ├── 05-01-976.mp4 │ ├── 06-02-003.mp4 │ ├── 07-01-992.mp4 │ ├── 08-02-018.mp4 │ ├── 09-02-044.mp4 │ ├── 10-02-028.mp4 │ ├── 11-02-045.mp4 │ ├── 12-02-066.mp4 │ ├── 13-02-083.mp4 │ ├── 14-02-101.mp4 │ ├── 15-02-100.mp4 │ ├── 16-02-119.mp4 │ ├── 17-02-131.mp4 │ ├── 18-02-143.mp4 │ ├── 19-02-150.mp4 │ ├── 20-02-192.mp4 │ ├── 21-02-177.mp4 │ ├── 22-02-187.mp4 │ ├── 23-02-225.mp4 │ ├── 24-02-213.mp4 │ ├── 25-02-252.mp4 │ ├── 26-02-249.mp4 │ ├── 27-02-254.mp4 │ └── 28-02-263.mp4 ├── LICENSE ├── Main ├── Close_Microphone_Audio │ ├── Session_1 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-288_Participant_ID_4.wav │ │ ├── 01-00-288_Participant_ID_6.wav │ │ ├── 02-00-310_Participant_ID_4.wav │ │ ├── 02-00-310_Participant_ID_6.wav │ │ ├── 03-00-321_Participant_ID_4.wav │ │ ├── 03-00-321_Participant_ID_6.wav │ │ ├── 04-00-345_Participant_ID_4.wav │ │ ├── 04-00-345_Participant_ID_6.wav │ │ ├── 05-00-347_Participant_ID_4.wav │ │ ├── 05-00-347_Participant_ID_6.wav │ │ ├── 06-00-361_Participant_ID_4.wav │ │ ├── 06-00-361_Participant_ID_6.wav │ │ ├── 07-00-379_Participant_ID_4.wav │ │ ├── 07-00-379_Participant_ID_6.wav │ │ ├── 08-00-383_Participant_ID_4.wav │ │ ├── 08-00-383_Participant_ID_6.wav │ │ ├── 09-00-406_Participant_ID_4.wav │ │ ├── 09-00-406_Participant_ID_6.wav │ │ ├── 10-00-416_Participant_ID_4.wav │ │ ├── 10-00-416_Participant_ID_6.wav │ │ ├── 11-00-439_Participant_ID_4.wav │ │ ├── 11-00-439_Participant_ID_6.wav │ │ ├── 12-00-434_Participant_ID_4.wav │ │ ├── 12-00-434_Participant_ID_6.wav │ │ ├── 19-00-530_Participant_ID_4.wav │ │ ├── 19-00-530_Participant_ID_6.wav │ │ ├── 20-00-543_Participant_ID_4.wav │ │ ├── 20-00-543_Participant_ID_6.wav │ │ ├── 21-00-553_Participant_ID_4.wav │ │ ├── 21-00-553_Participant_ID_6.wav │ │ ├── 22-00-560_Participant_ID_4.wav │ │ ├── 22-00-560_Participant_ID_6.wav │ │ ├── 23-00-599_Participant_ID_4.wav │ │ ├── 23-00-599_Participant_ID_6.wav │ │ ├── 24-00-604_Participant_ID_4.wav │ │ ├── 24-00-604_Participant_ID_6.wav │ │ ├── 25-00-604_Participant_ID_4.wav │ │ ├── 25-00-604_Participant_ID_6.wav │ │ ├── 26-00-613_Participant_ID_4.wav │ │ ├── 26-00-613_Participant_ID_6.wav │ │ ├── 27-00-643_Participant_ID_4.wav │ │ ├── 27-00-643_Participant_ID_6.wav │ │ ├── 28-00-634_Participant_ID_4.wav │ │ ├── 28-00-634_Participant_ID_6.wav │ │ ├── 29-00-647_Participant_ID_4.wav │ │ └── 29-00-647_Participant_ID_6.wav │ ├── Session_10 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-304_Participant_ID_4.wav │ │ ├── 01-00-304_Participant_ID_6.wav │ │ ├── 03-00-332_Participant_ID_4.wav │ │ ├── 03-00-332_Participant_ID_6.wav │ │ ├── 04-00-350_Participant_ID_4.wav │ │ ├── 04-00-350_Participant_ID_6.wav │ │ ├── 05-00-357_Participant_ID_4.wav │ │ ├── 05-00-357_Participant_ID_6.wav │ │ ├── 06-00-364_Participant_ID_4.wav │ │ ├── 06-00-364_Participant_ID_6.wav │ │ ├── 07-00-389_Participant_ID_4.wav │ │ ├── 07-00-389_Participant_ID_6.wav │ │ ├── 08-00-390_Participant_ID_4.wav │ │ ├── 08-00-390_Participant_ID_6.wav │ │ ├── 09-00-403_Participant_ID_4.wav │ │ ├── 09-00-403_Participant_ID_6.wav │ │ ├── 10-00-423_Participant_ID_4.wav │ │ ├── 10-00-423_Participant_ID_6.wav │ │ ├── 11-00-446_Participant_ID_4.wav │ │ ├── 11-00-446_Participant_ID_6.wav │ │ ├── 12-00-438_Participant_ID_4.wav │ │ ├── 12-00-438_Participant_ID_6.wav │ │ ├── 13-00-474_Participant_ID_4.wav │ │ ├── 13-00-474_Participant_ID_6.wav │ │ ├── 19-00-538_Participant_ID_4.wav │ │ ├── 19-00-538_Participant_ID_6.wav │ │ ├── 20-00-540_Participant_ID_4.wav │ │ ├── 20-00-540_Participant_ID_6.wav │ │ ├── 21-00-563_Participant_ID_4.wav │ │ ├── 21-00-563_Participant_ID_6.wav │ │ ├── 22-00-585_Participant_ID_4.wav │ │ ├── 22-00-585_Participant_ID_6.wav │ │ ├── 23-00-577_Participant_ID_4.wav │ │ ├── 23-00-577_Participant_ID_6.wav │ │ ├── 24-00-607_Participant_ID_4.wav │ │ ├── 24-00-607_Participant_ID_6.wav │ │ ├── 25-00-601_Participant_ID_4.wav │ │ ├── 25-00-601_Participant_ID_6.wav │ │ ├── 26-00-618_Participant_ID_4.wav │ │ ├── 26-00-618_Participant_ID_6.wav │ │ ├── 27-00-646_Participant_ID_4.wav │ │ ├── 27-00-646_Participant_ID_6.wav │ │ ├── 28-00-653_Participant_ID_4.wav │ │ ├── 28-00-653_Participant_ID_6.wav │ │ ├── 29-00-656_Participant_ID_4.wav │ │ └── 29-00-656_Participant_ID_6.wav │ ├── Session_11 │ │ ├── 00-00-000_Participant_ID_3.wav │ │ ├── 00-00-000_Participant_ID_5.wav │ │ ├── 00-00-000_Participant_ID_7.wav │ │ ├── 02-00-354_Participant_ID_3.wav │ │ ├── 02-00-354_Participant_ID_5.wav │ │ ├── 02-00-354_Participant_ID_7.wav │ │ ├── 03-00-356_Participant_ID_3.wav │ │ ├── 03-00-356_Participant_ID_5.wav │ │ ├── 03-00-356_Participant_ID_7.wav │ │ ├── 04-00-368_Participant_ID_3.wav │ │ ├── 04-00-368_Participant_ID_5.wav │ │ ├── 04-00-368_Participant_ID_7.wav │ │ ├── 05-00-388_Participant_ID_3.wav │ │ ├── 05-00-388_Participant_ID_5.wav │ │ ├── 05-00-388_Participant_ID_7.wav │ │ ├── 06-00-393_Participant_ID_3.wav │ │ ├── 06-00-393_Participant_ID_5.wav │ │ ├── 06-00-393_Participant_ID_7.wav │ │ ├── 07-00-415_Participant_ID_3.wav │ │ ├── 07-00-415_Participant_ID_5.wav │ │ ├── 07-00-415_Participant_ID_7.wav │ │ ├── 08-00-423_Participant_ID_3.wav │ │ ├── 08-00-423_Participant_ID_5.wav │ │ ├── 08-00-423_Participant_ID_7.wav │ │ ├── 09-00-429_Participant_ID_3.wav │ │ ├── 09-00-429_Participant_ID_5.wav │ │ ├── 09-00-429_Participant_ID_7.wav │ │ ├── 10-00-445_Participant_ID_3.wav │ │ ├── 10-00-445_Participant_ID_5.wav │ │ ├── 10-00-445_Participant_ID_7.wav │ │ ├── 11-00-454_Participant_ID_3.wav │ │ ├── 11-00-454_Participant_ID_5.wav │ │ ├── 11-00-454_Participant_ID_7.wav │ │ ├── 16-00-520_Participant_ID_3.wav │ │ ├── 16-00-520_Participant_ID_5.wav │ │ ├── 16-00-520_Participant_ID_7.wav │ │ ├── 20-00-568_Participant_ID_3.wav │ │ ├── 20-00-568_Participant_ID_5.wav │ │ ├── 20-00-568_Participant_ID_7.wav │ │ ├── 21-00-585_Participant_ID_3.wav │ │ ├── 21-00-585_Participant_ID_5.wav │ │ ├── 21-00-585_Participant_ID_7.wav │ │ ├── 22-00-598_Participant_ID_3.wav │ │ ├── 22-00-598_Participant_ID_5.wav │ │ ├── 22-00-598_Participant_ID_7.wav │ │ ├── 23-00-605_Participant_ID_3.wav │ │ ├── 23-00-605_Participant_ID_5.wav │ │ ├── 23-00-605_Participant_ID_7.wav │ │ ├── 24-00-623_Participant_ID_3.wav │ │ ├── 24-00-623_Participant_ID_5.wav │ │ ├── 24-00-623_Participant_ID_7.wav │ │ ├── 25-00-631_Participant_ID_3.wav │ │ ├── 25-00-631_Participant_ID_5.wav │ │ ├── 25-00-631_Participant_ID_7.wav │ │ ├── 26-00-642_Participant_ID_3.wav │ │ ├── 26-00-642_Participant_ID_5.wav │ │ ├── 26-00-642_Participant_ID_7.wav │ │ ├── 27-00-667_Participant_ID_3.wav │ │ ├── 27-00-667_Participant_ID_5.wav │ │ ├── 27-00-667_Participant_ID_7.wav │ │ ├── 28-00-666_Participant_ID_3.wav │ │ ├── 28-00-666_Participant_ID_5.wav │ │ ├── 28-00-666_Participant_ID_7.wav │ │ ├── 29-00-684_Participant_ID_3.wav │ │ ├── 29-00-684_Participant_ID_5.wav │ │ ├── 29-00-684_Participant_ID_7.wav │ │ ├── 30-00-709_Participant_ID_3.wav │ │ ├── 30-00-709_Participant_ID_5.wav │ │ └── 30-00-709_Participant_ID_7.wav │ ├── Session_12 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-273_Participant_ID_4.wav │ │ ├── 01-00-273_Participant_ID_6.wav │ │ ├── 02-00-307_Participant_ID_4.wav │ │ ├── 02-00-307_Participant_ID_6.wav │ │ ├── 03-00-314_Participant_ID_4.wav │ │ ├── 03-00-314_Participant_ID_6.wav │ │ ├── 04-00-332_Participant_ID_4.wav │ │ ├── 04-00-332_Participant_ID_6.wav │ │ ├── 05-00-338_Participant_ID_4.wav │ │ ├── 05-00-338_Participant_ID_6.wav │ │ ├── 06-00-365_Participant_ID_4.wav │ │ ├── 06-00-365_Participant_ID_6.wav │ │ ├── 07-00-370_Participant_ID_4.wav │ │ ├── 07-00-370_Participant_ID_6.wav │ │ ├── 08-00-374_Participant_ID_4.wav │ │ ├── 08-00-374_Participant_ID_6.wav │ │ ├── 09-00-390_Participant_ID_4.wav │ │ ├── 09-00-390_Participant_ID_6.wav │ │ ├── 10-00-415_Participant_ID_4.wav │ │ ├── 10-00-415_Participant_ID_6.wav │ │ ├── 11-00-411_Participant_ID_4.wav │ │ ├── 11-00-411_Participant_ID_6.wav │ │ ├── 12-00-428_Participant_ID_4.wav │ │ ├── 12-00-428_Participant_ID_6.wav │ │ ├── 13-00-458_Participant_ID_4.wav │ │ ├── 13-00-458_Participant_ID_6.wav │ │ ├── 14-00-450_Participant_ID_4.wav │ │ ├── 14-00-450_Participant_ID_6.wav │ │ ├── 15-00-460_Participant_ID_4.wav │ │ ├── 15-00-460_Participant_ID_6.wav │ │ ├── 16-00-490_Participant_ID_4.wav │ │ ├── 16-00-490_Participant_ID_6.wav │ │ ├── 17-00-468_Participant_ID_4.wav │ │ ├── 17-00-468_Participant_ID_6.wav │ │ ├── 18-00-494_Participant_ID_4.wav │ │ ├── 18-00-494_Participant_ID_6.wav │ │ ├── 19-00-511_Participant_ID_4.wav │ │ ├── 19-00-511_Participant_ID_6.wav │ │ ├── 20-00-535_Participant_ID_4.wav │ │ ├── 20-00-535_Participant_ID_6.wav │ │ ├── 21-00-544_Participant_ID_4.wav │ │ ├── 21-00-544_Participant_ID_6.wav │ │ ├── 22-00-569_Participant_ID_4.wav │ │ ├── 22-00-569_Participant_ID_6.wav │ │ ├── 23-00-566_Participant_ID_4.wav │ │ ├── 23-00-566_Participant_ID_6.wav │ │ ├── 24-00-587_Participant_ID_4.wav │ │ ├── 24-00-587_Participant_ID_6.wav │ │ ├── 25-00-593_Participant_ID_4.wav │ │ ├── 25-00-593_Participant_ID_6.wav │ │ ├── 26-00-604_Participant_ID_4.wav │ │ ├── 26-00-604_Participant_ID_6.wav │ │ ├── 27-00-621_Participant_ID_4.wav │ │ ├── 27-00-621_Participant_ID_6.wav │ │ ├── 28-00-636_Participant_ID_4.wav │ │ ├── 28-00-636_Participant_ID_6.wav │ │ ├── 29-00-647_Participant_ID_4.wav │ │ └── 29-00-647_Participant_ID_6.wav │ ├── Session_2 │ │ ├── 00-00-000_Participant_ID_3.wav │ │ ├── 00-00-000_Participant_ID_5.wav │ │ ├── 00-00-000_Participant_ID_7.wav │ │ ├── 01-00-280_Participant_ID_3.wav │ │ ├── 01-00-280_Participant_ID_5.wav │ │ ├── 01-00-280_Participant_ID_7.wav │ │ ├── 02-00-311_Participant_ID_3.wav │ │ ├── 02-00-311_Participant_ID_5.wav │ │ ├── 02-00-311_Participant_ID_7.wav │ │ ├── 03-00-324_Participant_ID_3.wav │ │ ├── 03-00-324_Participant_ID_5.wav │ │ ├── 03-00-324_Participant_ID_7.wav │ │ ├── 04-00-343_Participant_ID_3.wav │ │ ├── 04-00-343_Participant_ID_5.wav │ │ ├── 04-00-343_Participant_ID_7.wav │ │ ├── 05-00-343_Participant_ID_3.wav │ │ ├── 05-00-343_Participant_ID_5.wav │ │ ├── 05-00-343_Participant_ID_7.wav │ │ ├── 06-00-371_Participant_ID_3.wav │ │ ├── 06-00-371_Participant_ID_5.wav │ │ ├── 06-00-371_Participant_ID_7.wav │ │ ├── 11-00-424_Participant_ID_3.wav │ │ ├── 11-00-424_Participant_ID_5.wav │ │ ├── 11-00-424_Participant_ID_7.wav │ │ ├── 12-00-440_Participant_ID_3.wav │ │ ├── 12-00-440_Participant_ID_5.wav │ │ ├── 12-00-440_Participant_ID_7.wav │ │ ├── 13-00-454_Participant_ID_3.wav │ │ ├── 13-00-454_Participant_ID_5.wav │ │ ├── 13-00-454_Participant_ID_7.wav │ │ ├── 14-00-465_Participant_ID_3.wav │ │ ├── 14-00-465_Participant_ID_5.wav │ │ ├── 14-00-465_Participant_ID_7.wav │ │ ├── 15-00-477_Participant_ID_3.wav │ │ ├── 15-00-477_Participant_ID_5.wav │ │ ├── 15-00-477_Participant_ID_7.wav │ │ ├── 16-00-507_Participant_ID_3.wav │ │ ├── 16-00-507_Participant_ID_5.wav │ │ ├── 16-00-507_Participant_ID_7.wav │ │ ├── 17-00-495_Participant_ID_3.wav │ │ ├── 17-00-495_Participant_ID_5.wav │ │ ├── 17-00-495_Participant_ID_7.wav │ │ ├── 18-00-503_Participant_ID_3.wav │ │ ├── 18-00-503_Participant_ID_5.wav │ │ ├── 18-00-503_Participant_ID_7.wav │ │ ├── 19-00-525_Participant_ID_3.wav │ │ ├── 19-00-525_Participant_ID_5.wav │ │ ├── 19-00-525_Participant_ID_7.wav │ │ ├── 20-00-548_Participant_ID_3.wav │ │ ├── 20-00-548_Participant_ID_5.wav │ │ ├── 20-00-548_Participant_ID_7.wav │ │ ├── 21-00-556_Participant_ID_3.wav │ │ ├── 21-00-556_Participant_ID_5.wav │ │ ├── 21-00-556_Participant_ID_7.wav │ │ ├── 22-00-566_Participant_ID_3.wav │ │ ├── 22-00-566_Participant_ID_5.wav │ │ ├── 22-00-566_Participant_ID_7.wav │ │ ├── 23-00-586_Participant_ID_3.wav │ │ ├── 23-00-586_Participant_ID_5.wav │ │ ├── 23-00-586_Participant_ID_7.wav │ │ ├── 24-00-597_Participant_ID_3.wav │ │ ├── 24-00-597_Participant_ID_5.wav │ │ ├── 24-00-597_Participant_ID_7.wav │ │ ├── 25-00-605_Participant_ID_3.wav │ │ ├── 25-00-605_Participant_ID_5.wav │ │ ├── 25-00-605_Participant_ID_7.wav │ │ ├── 26-00-616_Participant_ID_3.wav │ │ ├── 26-00-616_Participant_ID_5.wav │ │ ├── 26-00-616_Participant_ID_7.wav │ │ ├── 27-00-633_Participant_ID_3.wav │ │ ├── 27-00-633_Participant_ID_5.wav │ │ ├── 27-00-633_Participant_ID_7.wav │ │ ├── 28-00-641_Participant_ID_3.wav │ │ ├── 28-00-641_Participant_ID_5.wav │ │ ├── 28-00-641_Participant_ID_7.wav │ │ ├── 29-00-665_Participant_ID_3.wav │ │ ├── 29-00-665_Participant_ID_5.wav │ │ └── 29-00-665_Participant_ID_7.wav │ ├── Session_3 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-292_Participant_ID_4.wav │ │ ├── 01-00-292_Participant_ID_6.wav │ │ ├── 02-00-318_Participant_ID_4.wav │ │ ├── 02-00-318_Participant_ID_6.wav │ │ ├── 03-00-330_Participant_ID_4.wav │ │ ├── 03-00-330_Participant_ID_6.wav │ │ ├── 04-00-342_Participant_ID_4.wav │ │ ├── 04-00-342_Participant_ID_6.wav │ │ ├── 05-00-352_Participant_ID_4.wav │ │ ├── 05-00-352_Participant_ID_6.wav │ │ ├── 06-00-368_Participant_ID_4.wav │ │ ├── 06-00-368_Participant_ID_6.wav │ │ ├── 07-00-378_Participant_ID_4.wav │ │ ├── 07-00-378_Participant_ID_6.wav │ │ ├── 08-00-387_Participant_ID_4.wav │ │ ├── 08-00-387_Participant_ID_6.wav │ │ ├── 09-00-404_Participant_ID_4.wav │ │ ├── 09-00-404_Participant_ID_6.wav │ │ ├── 10-00-415_Participant_ID_4.wav │ │ ├── 10-00-415_Participant_ID_6.wav │ │ ├── 11-00-420_Participant_ID_4.wav │ │ ├── 11-00-420_Participant_ID_6.wav │ │ ├── 12-00-454_Participant_ID_4.wav │ │ ├── 12-00-454_Participant_ID_6.wav │ │ ├── 13-00-471_Participant_ID_4.wav │ │ ├── 13-00-471_Participant_ID_6.wav │ │ ├── 14-00-458_Participant_ID_4.wav │ │ ├── 14-00-458_Participant_ID_6.wav │ │ ├── 15-00-472_Participant_ID_4.wav │ │ ├── 15-00-472_Participant_ID_6.wav │ │ ├── 16-00-498_Participant_ID_4.wav │ │ ├── 16-00-498_Participant_ID_6.wav │ │ ├── 17-00-492_Participant_ID_4.wav │ │ ├── 17-00-492_Participant_ID_6.wav │ │ ├── 18-00-509_Participant_ID_4.wav │ │ ├── 18-00-509_Participant_ID_6.wav │ │ ├── 19-00-533_Participant_ID_4.wav │ │ ├── 19-00-533_Participant_ID_6.wav │ │ ├── 20-00-552_Participant_ID_4.wav │ │ ├── 20-00-552_Participant_ID_6.wav │ │ ├── 21-00-561_Participant_ID_4.wav │ │ ├── 21-00-561_Participant_ID_6.wav │ │ ├── 22-00-564_Participant_ID_4.wav │ │ ├── 22-00-564_Participant_ID_6.wav │ │ ├── 23-00-586_Participant_ID_4.wav │ │ ├── 23-00-586_Participant_ID_6.wav │ │ ├── 24-00-607_Participant_ID_4.wav │ │ ├── 24-00-607_Participant_ID_6.wav │ │ ├── 25-00-599_Participant_ID_4.wav │ │ ├── 25-00-599_Participant_ID_6.wav │ │ ├── 26-00-611_Participant_ID_4.wav │ │ ├── 26-00-611_Participant_ID_6.wav │ │ ├── 27-00-641_Participant_ID_4.wav │ │ └── 27-00-641_Participant_ID_6.wav │ ├── Session_4 │ │ ├── 00-00-000_Participant_ID_3.wav │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 00-00-000_Participant_ID_7.wav │ │ ├── 01-00-293_Participant_ID_3.wav │ │ ├── 01-00-293_Participant_ID_4.wav │ │ ├── 01-00-293_Participant_ID_6.wav │ │ ├── 01-00-293_Participant_ID_7.wav │ │ ├── 02-00-322_Participant_ID_3.wav │ │ ├── 02-00-322_Participant_ID_4.wav │ │ ├── 02-00-322_Participant_ID_6.wav │ │ ├── 02-00-322_Participant_ID_7.wav │ │ ├── 03-00-332_Participant_ID_3.wav │ │ ├── 03-00-332_Participant_ID_4.wav │ │ ├── 03-00-332_Participant_ID_6.wav │ │ ├── 03-00-332_Participant_ID_7.wav │ │ ├── 04-00-349_Participant_ID_3.wav │ │ ├── 04-00-349_Participant_ID_4.wav │ │ ├── 04-00-349_Participant_ID_6.wav │ │ ├── 04-00-349_Participant_ID_7.wav │ │ ├── 05-00-353_Participant_ID_3.wav │ │ ├── 05-00-353_Participant_ID_4.wav │ │ ├── 05-00-353_Participant_ID_6.wav │ │ ├── 05-00-353_Participant_ID_7.wav │ │ ├── 06-00-363_Participant_ID_3.wav │ │ ├── 06-00-363_Participant_ID_4.wav │ │ ├── 06-00-363_Participant_ID_6.wav │ │ ├── 06-00-363_Participant_ID_7.wav │ │ ├── 07-00-382_Participant_ID_3.wav │ │ ├── 07-00-382_Participant_ID_4.wav │ │ ├── 07-00-382_Participant_ID_6.wav │ │ ├── 07-00-382_Participant_ID_7.wav │ │ ├── 08-00-381_Participant_ID_3.wav │ │ ├── 08-00-381_Participant_ID_4.wav │ │ ├── 08-00-381_Participant_ID_6.wav │ │ ├── 08-00-381_Participant_ID_7.wav │ │ ├── 09-00-400_Participant_ID_3.wav │ │ ├── 09-00-400_Participant_ID_4.wav │ │ ├── 09-00-400_Participant_ID_6.wav │ │ ├── 09-00-400_Participant_ID_7.wav │ │ ├── 10-00-415_Participant_ID_3.wav │ │ ├── 10-00-415_Participant_ID_4.wav │ │ ├── 10-00-415_Participant_ID_6.wav │ │ ├── 10-00-415_Participant_ID_7.wav │ │ ├── 11-00-428_Participant_ID_3.wav │ │ ├── 11-00-428_Participant_ID_4.wav │ │ ├── 11-00-428_Participant_ID_6.wav │ │ ├── 11-00-428_Participant_ID_7.wav │ │ ├── 15-00-480_Participant_ID_3.wav │ │ ├── 15-00-480_Participant_ID_4.wav │ │ ├── 15-00-480_Participant_ID_6.wav │ │ ├── 15-00-480_Participant_ID_7.wav │ │ ├── 16-00-501_Participant_ID_3.wav │ │ ├── 16-00-501_Participant_ID_4.wav │ │ ├── 16-00-501_Participant_ID_6.wav │ │ ├── 16-00-501_Participant_ID_7.wav │ │ ├── 17-00-478_Participant_ID_3.wav │ │ ├── 17-00-478_Participant_ID_4.wav │ │ ├── 17-00-478_Participant_ID_6.wav │ │ ├── 17-00-478_Participant_ID_7.wav │ │ ├── 18-00-512_Participant_ID_3.wav │ │ ├── 18-00-512_Participant_ID_4.wav │ │ ├── 18-00-512_Participant_ID_6.wav │ │ ├── 18-00-512_Participant_ID_7.wav │ │ ├── 19-00-532_Participant_ID_3.wav │ │ ├── 19-00-532_Participant_ID_4.wav │ │ ├── 19-00-532_Participant_ID_6.wav │ │ ├── 19-00-532_Participant_ID_7.wav │ │ ├── 20-00-540_Participant_ID_3.wav │ │ ├── 20-00-540_Participant_ID_4.wav │ │ ├── 20-00-540_Participant_ID_6.wav │ │ ├── 20-00-540_Participant_ID_7.wav │ │ ├── 21-00-559_Participant_ID_3.wav │ │ ├── 21-00-559_Participant_ID_4.wav │ │ ├── 21-00-559_Participant_ID_6.wav │ │ ├── 21-00-559_Participant_ID_7.wav │ │ ├── 22-00-570_Participant_ID_3.wav │ │ ├── 22-00-570_Participant_ID_4.wav │ │ ├── 22-00-570_Participant_ID_6.wav │ │ ├── 22-00-570_Participant_ID_7.wav │ │ ├── 23-00-578_Participant_ID_3.wav │ │ ├── 23-00-578_Participant_ID_4.wav │ │ ├── 23-00-578_Participant_ID_6.wav │ │ ├── 23-00-578_Participant_ID_7.wav │ │ ├── 24-00-594_Participant_ID_3.wav │ │ ├── 24-00-594_Participant_ID_4.wav │ │ ├── 24-00-594_Participant_ID_6.wav │ │ ├── 24-00-594_Participant_ID_7.wav │ │ ├── 25-00-599_Participant_ID_3.wav │ │ ├── 25-00-599_Participant_ID_4.wav │ │ ├── 25-00-599_Participant_ID_6.wav │ │ ├── 25-00-599_Participant_ID_7.wav │ │ ├── 26-00-615_Participant_ID_3.wav │ │ ├── 26-00-615_Participant_ID_4.wav │ │ ├── 26-00-615_Participant_ID_6.wav │ │ ├── 26-00-615_Participant_ID_7.wav │ │ ├── 27-00-632_Participant_ID_3.wav │ │ ├── 27-00-632_Participant_ID_4.wav │ │ ├── 27-00-632_Participant_ID_6.wav │ │ ├── 27-00-632_Participant_ID_7.wav │ │ ├── 28-00-637_Participant_ID_3.wav │ │ ├── 28-00-637_Participant_ID_4.wav │ │ ├── 28-00-637_Participant_ID_6.wav │ │ ├── 28-00-637_Participant_ID_7.wav │ │ ├── 29-00-654_Participant_ID_3.wav │ │ ├── 29-00-654_Participant_ID_4.wav │ │ ├── 29-00-654_Participant_ID_6.wav │ │ ├── 29-00-654_Participant_ID_7.wav │ │ ├── 30-00-679_Participant_ID_3.wav │ │ ├── 30-00-679_Participant_ID_4.wav │ │ ├── 30-00-679_Participant_ID_6.wav │ │ ├── 30-00-679_Participant_ID_7.wav │ │ ├── 31-00-672_Participant_ID_3.wav │ │ ├── 31-00-672_Participant_ID_4.wav │ │ ├── 31-00-672_Participant_ID_6.wav │ │ └── 31-00-672_Participant_ID_7.wav │ ├── Session_5 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-296_Participant_ID_4.wav │ │ ├── 01-00-296_Participant_ID_6.wav │ │ ├── 02-00-325_Participant_ID_4.wav │ │ ├── 02-00-325_Participant_ID_6.wav │ │ ├── 04-00-354_Participant_ID_4.wav │ │ ├── 04-00-354_Participant_ID_6.wav │ │ ├── 05-00-353_Participant_ID_4.wav │ │ ├── 05-00-353_Participant_ID_6.wav │ │ ├── 06-00-368_Participant_ID_4.wav │ │ ├── 06-00-368_Participant_ID_6.wav │ │ ├── 07-00-386_Participant_ID_4.wav │ │ ├── 07-00-386_Participant_ID_6.wav │ │ ├── 08-00-399_Participant_ID_4.wav │ │ ├── 08-00-399_Participant_ID_6.wav │ │ ├── 09-00-410_Participant_ID_4.wav │ │ ├── 09-00-410_Participant_ID_6.wav │ │ ├── 10-00-432_Participant_ID_4.wav │ │ ├── 10-00-432_Participant_ID_6.wav │ │ ├── 11-00-440_Participant_ID_4.wav │ │ ├── 11-00-440_Participant_ID_6.wav │ │ ├── 12-00-443_Participant_ID_4.wav │ │ ├── 12-00-443_Participant_ID_6.wav │ │ ├── 13-00-467_Participant_ID_4.wav │ │ ├── 13-00-467_Participant_ID_6.wav │ │ ├── 14-00-472_Participant_ID_4.wav │ │ ├── 14-00-472_Participant_ID_6.wav │ │ ├── 15-00-480_Participant_ID_4.wav │ │ ├── 15-00-480_Participant_ID_6.wav │ │ ├── 16-00-507_Participant_ID_4.wav │ │ ├── 16-00-507_Participant_ID_6.wav │ │ ├── 17-00-506_Participant_ID_4.wav │ │ ├── 17-00-506_Participant_ID_6.wav │ │ ├── 18-00-515_Participant_ID_4.wav │ │ ├── 18-00-515_Participant_ID_6.wav │ │ ├── 19-00-546_Participant_ID_4.wav │ │ ├── 19-00-546_Participant_ID_6.wav │ │ ├── 20-00-547_Participant_ID_4.wav │ │ ├── 20-00-547_Participant_ID_6.wav │ │ ├── 21-00-571_Participant_ID_4.wav │ │ ├── 21-00-571_Participant_ID_6.wav │ │ ├── 22-00-578_Participant_ID_4.wav │ │ ├── 22-00-578_Participant_ID_6.wav │ │ ├── 23-00-589_Participant_ID_4.wav │ │ ├── 23-00-589_Participant_ID_6.wav │ │ ├── 24-00-606_Participant_ID_4.wav │ │ ├── 24-00-606_Participant_ID_6.wav │ │ ├── 25-00-618_Participant_ID_4.wav │ │ ├── 25-00-618_Participant_ID_6.wav │ │ ├── 26-00-635_Participant_ID_4.wav │ │ ├── 26-00-635_Participant_ID_6.wav │ │ ├── 27-00-643_Participant_ID_4.wav │ │ ├── 27-00-643_Participant_ID_6.wav │ │ ├── 28-00-651_Participant_ID_4.wav │ │ ├── 28-00-651_Participant_ID_6.wav │ │ ├── 29-00-669_Participant_ID_4.wav │ │ └── 29-00-669_Participant_ID_6.wav │ ├── Session_6 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-282_Participant_ID_4.wav │ │ ├── 01-00-282_Participant_ID_6.wav │ │ ├── 02-00-327_Participant_ID_4.wav │ │ ├── 02-00-327_Participant_ID_6.wav │ │ ├── 03-00-327_Participant_ID_4.wav │ │ ├── 03-00-327_Participant_ID_6.wav │ │ ├── 04-00-343_Participant_ID_4.wav │ │ ├── 04-00-343_Participant_ID_6.wav │ │ ├── 05-00-364_Participant_ID_4.wav │ │ ├── 05-00-364_Participant_ID_6.wav │ │ ├── 06-00-370_Participant_ID_4.wav │ │ ├── 06-00-370_Participant_ID_6.wav │ │ ├── 07-00-378_Participant_ID_4.wav │ │ ├── 07-00-378_Participant_ID_6.wav │ │ ├── 08-00-378_Participant_ID_4.wav │ │ ├── 08-00-378_Participant_ID_6.wav │ │ ├── 09-00-402_Participant_ID_4.wav │ │ ├── 09-00-402_Participant_ID_6.wav │ │ ├── 10-00-414_Participant_ID_4.wav │ │ ├── 10-00-414_Participant_ID_6.wav │ │ ├── 11-00-421_Participant_ID_4.wav │ │ ├── 11-00-421_Participant_ID_6.wav │ │ ├── 12-00-430_Participant_ID_4.wav │ │ ├── 12-00-430_Participant_ID_6.wav │ │ ├── 13-00-463_Participant_ID_4.wav │ │ ├── 13-00-463_Participant_ID_6.wav │ │ ├── 14-00-452_Participant_ID_4.wav │ │ ├── 14-00-452_Participant_ID_6.wav │ │ ├── 15-00-467_Participant_ID_4.wav │ │ ├── 15-00-467_Participant_ID_6.wav │ │ ├── 16-00-500_Participant_ID_4.wav │ │ ├── 16-00-500_Participant_ID_6.wav │ │ ├── 17-00-489_Participant_ID_4.wav │ │ ├── 17-00-489_Participant_ID_6.wav │ │ ├── 18-00-507_Participant_ID_4.wav │ │ ├── 18-00-507_Participant_ID_6.wav │ │ ├── 19-00-529_Participant_ID_4.wav │ │ ├── 19-00-529_Participant_ID_6.wav │ │ ├── 20-00-540_Participant_ID_4.wav │ │ ├── 20-00-540_Participant_ID_6.wav │ │ ├── 21-00-551_Participant_ID_4.wav │ │ ├── 21-00-551_Participant_ID_6.wav │ │ ├── 22-00-562_Participant_ID_4.wav │ │ ├── 22-00-562_Participant_ID_6.wav │ │ ├── 23-00-573_Participant_ID_4.wav │ │ ├── 23-00-573_Participant_ID_6.wav │ │ ├── 24-00-595_Participant_ID_4.wav │ │ ├── 24-00-595_Participant_ID_6.wav │ │ ├── 25-00-594_Participant_ID_4.wav │ │ ├── 25-00-594_Participant_ID_6.wav │ │ ├── 26-00-615_Participant_ID_4.wav │ │ ├── 26-00-615_Participant_ID_6.wav │ │ ├── 27-00-644_Participant_ID_4.wav │ │ ├── 27-00-644_Participant_ID_6.wav │ │ ├── 28-00-648_Participant_ID_4.wav │ │ ├── 28-00-648_Participant_ID_6.wav │ │ ├── 29-00-649_Participant_ID_4.wav │ │ └── 29-00-649_Participant_ID_6.wav │ ├── Session_7 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-279_Participant_ID_4.wav │ │ ├── 01-00-279_Participant_ID_6.wav │ │ ├── 02-00-303_Participant_ID_4.wav │ │ ├── 02-00-303_Participant_ID_6.wav │ │ ├── 03-00-324_Participant_ID_4.wav │ │ ├── 03-00-324_Participant_ID_6.wav │ │ ├── 04-00-340_Participant_ID_4.wav │ │ ├── 04-00-340_Participant_ID_6.wav │ │ ├── 05-00-343_Participant_ID_4.wav │ │ ├── 05-00-343_Participant_ID_6.wav │ │ ├── 09-00-396_Participant_ID_4.wav │ │ ├── 09-00-396_Participant_ID_6.wav │ │ ├── 10-00-413_Participant_ID_4.wav │ │ ├── 10-00-413_Participant_ID_6.wav │ │ ├── 11-00-420_Participant_ID_4.wav │ │ ├── 11-00-420_Participant_ID_6.wav │ │ ├── 12-00-436_Participant_ID_4.wav │ │ ├── 12-00-436_Participant_ID_6.wav │ │ ├── 13-00-450_Participant_ID_4.wav │ │ ├── 13-00-450_Participant_ID_6.wav │ │ ├── 14-00-454_Participant_ID_4.wav │ │ ├── 14-00-454_Participant_ID_6.wav │ │ ├── 15-00-474_Participant_ID_4.wav │ │ ├── 15-00-474_Participant_ID_6.wav │ │ ├── 16-00-492_Participant_ID_4.wav │ │ ├── 16-00-492_Participant_ID_6.wav │ │ ├── 17-00-482_Participant_ID_4.wav │ │ ├── 17-00-482_Participant_ID_6.wav │ │ ├── 18-00-515_Participant_ID_4.wav │ │ ├── 18-00-515_Participant_ID_6.wav │ │ ├── 19-00-519_Participant_ID_4.wav │ │ ├── 19-00-519_Participant_ID_6.wav │ │ ├── 20-00-532_Participant_ID_4.wav │ │ ├── 20-00-532_Participant_ID_6.wav │ │ ├── 21-00-564_Participant_ID_4.wav │ │ ├── 21-00-564_Participant_ID_6.wav │ │ ├── 22-00-562_Participant_ID_4.wav │ │ ├── 22-00-562_Participant_ID_6.wav │ │ ├── 23-00-574_Participant_ID_4.wav │ │ ├── 23-00-574_Participant_ID_6.wav │ │ ├── 24-00-593_Participant_ID_4.wav │ │ ├── 24-00-593_Participant_ID_6.wav │ │ ├── 25-00-603_Participant_ID_4.wav │ │ ├── 25-00-603_Participant_ID_6.wav │ │ ├── 26-00-614_Participant_ID_4.wav │ │ ├── 26-00-614_Participant_ID_6.wav │ │ ├── 27-00-632_Participant_ID_4.wav │ │ └── 27-00-632_Participant_ID_6.wav │ ├── Session_8 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 03-00-333_Participant_ID_4.wav │ │ ├── 03-00-333_Participant_ID_6.wav │ │ ├── 04-00-344_Participant_ID_4.wav │ │ ├── 04-00-344_Participant_ID_6.wav │ │ ├── 05-00-355_Participant_ID_4.wav │ │ ├── 05-00-355_Participant_ID_6.wav │ │ ├── 06-00-370_Participant_ID_4.wav │ │ ├── 06-00-370_Participant_ID_6.wav │ │ ├── 07-00-384_Participant_ID_4.wav │ │ ├── 07-00-384_Participant_ID_6.wav │ │ ├── 08-00-392_Participant_ID_4.wav │ │ ├── 08-00-392_Participant_ID_6.wav │ │ ├── 09-00-399_Participant_ID_4.wav │ │ ├── 09-00-399_Participant_ID_6.wav │ │ ├── 10-00-419_Participant_ID_4.wav │ │ ├── 10-00-419_Participant_ID_6.wav │ │ ├── 11-00-419_Participant_ID_4.wav │ │ ├── 11-00-419_Participant_ID_6.wav │ │ ├── 12-00-449_Participant_ID_4.wav │ │ ├── 12-00-449_Participant_ID_6.wav │ │ ├── 13-00-458_Participant_ID_4.wav │ │ ├── 13-00-458_Participant_ID_6.wav │ │ ├── 14-00-460_Participant_ID_4.wav │ │ ├── 14-00-460_Participant_ID_6.wav │ │ ├── 15-00-480_Participant_ID_4.wav │ │ ├── 15-00-480_Participant_ID_6.wav │ │ ├── 16-00-499_Participant_ID_4.wav │ │ ├── 16-00-499_Participant_ID_6.wav │ │ ├── 17-00-491_Participant_ID_4.wav │ │ ├── 17-00-491_Participant_ID_6.wav │ │ ├── 18-00-506_Participant_ID_4.wav │ │ ├── 18-00-506_Participant_ID_6.wav │ │ ├── 19-00-519_Participant_ID_4.wav │ │ ├── 19-00-519_Participant_ID_6.wav │ │ ├── 20-00-537_Participant_ID_4.wav │ │ ├── 20-00-537_Participant_ID_6.wav │ │ ├── 21-00-566_Participant_ID_4.wav │ │ ├── 21-00-566_Participant_ID_6.wav │ │ ├── 22-00-556_Participant_ID_4.wav │ │ ├── 22-00-556_Participant_ID_6.wav │ │ ├── 23-00-574_Participant_ID_4.wav │ │ ├── 23-00-574_Participant_ID_6.wav │ │ ├── 24-00-604_Participant_ID_4.wav │ │ ├── 24-00-604_Participant_ID_6.wav │ │ ├── 25-00-599_Participant_ID_4.wav │ │ ├── 25-00-599_Participant_ID_6.wav │ │ ├── 26-00-622_Participant_ID_4.wav │ │ ├── 26-00-622_Participant_ID_6.wav │ │ ├── 27-00-648_Participant_ID_4.wav │ │ └── 27-00-648_Participant_ID_6.wav │ └── Session_9 │ │ ├── 00-00-000_Participant_ID_4.wav │ │ ├── 00-00-000_Participant_ID_6.wav │ │ ├── 01-00-297_Participant_ID_4.wav │ │ ├── 01-00-297_Participant_ID_6.wav │ │ ├── 02-00-303_Participant_ID_4.wav │ │ ├── 02-00-303_Participant_ID_6.wav │ │ ├── 03-00-318_Participant_ID_4.wav │ │ ├── 03-00-318_Participant_ID_6.wav │ │ ├── 05-00-357_Participant_ID_4.wav │ │ ├── 05-00-357_Participant_ID_6.wav │ │ ├── 06-00-367_Participant_ID_4.wav │ │ ├── 06-00-367_Participant_ID_6.wav │ │ ├── 07-00-379_Participant_ID_4.wav │ │ ├── 07-00-379_Participant_ID_6.wav │ │ ├── 08-00-392_Participant_ID_4.wav │ │ ├── 08-00-392_Participant_ID_6.wav │ │ ├── 09-00-403_Participant_ID_4.wav │ │ ├── 09-00-403_Participant_ID_6.wav │ │ ├── 10-00-423_Participant_ID_4.wav │ │ ├── 10-00-423_Participant_ID_6.wav │ │ ├── 11-00-431_Participant_ID_4.wav │ │ ├── 11-00-431_Participant_ID_6.wav │ │ ├── 12-00-437_Participant_ID_4.wav │ │ ├── 12-00-437_Participant_ID_6.wav │ │ ├── 13-00-468_Participant_ID_4.wav │ │ ├── 13-00-468_Participant_ID_6.wav │ │ ├── 14-00-459_Participant_ID_4.wav │ │ ├── 14-00-459_Participant_ID_6.wav │ │ ├── 15-00-476_Participant_ID_4.wav │ │ ├── 15-00-476_Participant_ID_6.wav │ │ ├── 16-00-501_Participant_ID_4.wav │ │ ├── 16-00-501_Participant_ID_6.wav │ │ ├── 17-00-493_Participant_ID_4.wav │ │ ├── 17-00-493_Participant_ID_6.wav │ │ ├── 18-00-514_Participant_ID_4.wav │ │ ├── 18-00-514_Participant_ID_6.wav │ │ ├── 19-00-537_Participant_ID_4.wav │ │ ├── 19-00-537_Participant_ID_6.wav │ │ ├── 20-00-546_Participant_ID_4.wav │ │ ├── 20-00-546_Participant_ID_6.wav │ │ ├── 21-00-564_Participant_ID_4.wav │ │ ├── 21-00-564_Participant_ID_6.wav │ │ ├── 22-00-577_Participant_ID_4.wav │ │ ├── 22-00-577_Participant_ID_6.wav │ │ ├── 23-00-584_Participant_ID_4.wav │ │ ├── 23-00-584_Participant_ID_6.wav │ │ ├── 24-00-597_Participant_ID_4.wav │ │ ├── 24-00-597_Participant_ID_6.wav │ │ ├── 25-00-610_Participant_ID_4.wav │ │ ├── 25-00-610_Participant_ID_6.wav │ │ ├── 26-00-620_Participant_ID_4.wav │ │ ├── 26-00-620_Participant_ID_6.wav │ │ ├── 27-00-643_Participant_ID_4.wav │ │ ├── 27-00-643_Participant_ID_6.wav │ │ ├── 28-00-653_Participant_ID_4.wav │ │ ├── 28-00-653_Participant_ID_6.wav │ │ ├── 29-00-658_Participant_ID_4.wav │ │ └── 29-00-658_Participant_ID_6.wav ├── Face_Bounding_Boxes │ ├── Session_1 │ │ ├── 00-00-000.json │ │ ├── 01-00-288.json │ │ ├── 02-00-310.json │ │ ├── 03-00-321.json │ │ ├── 04-00-345.json │ │ ├── 05-00-347.json │ │ ├── 06-00-361.json │ │ ├── 07-00-379.json │ │ ├── 08-00-383.json │ │ ├── 09-00-406.json │ │ ├── 10-00-416.json │ │ ├── 11-00-439.json │ │ ├── 12-00-434.json │ │ ├── 19-00-530.json │ │ ├── 20-00-543.json │ │ ├── 21-00-553.json │ │ ├── 22-00-560.json │ │ ├── 23-00-599.json │ │ ├── 24-00-604.json │ │ ├── 25-00-604.json │ │ ├── 26-00-613.json │ │ ├── 27-00-643.json │ │ ├── 28-00-634.json │ │ └── 29-00-647.json │ ├── Session_10 │ │ ├── 00-00-000.json │ │ ├── 01-00-304.json │ │ ├── 03-00-332.json │ │ ├── 04-00-350.json │ │ ├── 05-00-357.json │ │ ├── 06-00-364.json │ │ ├── 07-00-389.json │ │ ├── 08-00-390.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-446.json │ │ ├── 12-00-438.json │ │ ├── 13-00-474.json │ │ ├── 19-00-538.json │ │ ├── 20-00-540.json │ │ ├── 21-00-563.json │ │ ├── 22-00-585.json │ │ ├── 23-00-577.json │ │ ├── 24-00-607.json │ │ ├── 25-00-601.json │ │ ├── 26-00-618.json │ │ ├── 27-00-646.json │ │ ├── 28-00-653.json │ │ └── 29-00-656.json │ ├── Session_11 │ │ ├── 00-00-000.json │ │ ├── 02-00-354.json │ │ ├── 03-00-356.json │ │ ├── 04-00-368.json │ │ ├── 05-00-388.json │ │ ├── 06-00-393.json │ │ ├── 07-00-415.json │ │ ├── 08-00-423.json │ │ ├── 09-00-429.json │ │ ├── 10-00-445.json │ │ ├── 11-00-454.json │ │ ├── 16-00-520.json │ │ ├── 20-00-568.json │ │ ├── 21-00-585.json │ │ ├── 22-00-598.json │ │ ├── 23-00-605.json │ │ ├── 24-00-623.json │ │ ├── 25-00-631.json │ │ ├── 26-00-642.json │ │ ├── 27-00-667.json │ │ ├── 28-00-666.json │ │ ├── 29-00-684.json │ │ └── 30-00-709.json │ ├── Session_12 │ │ ├── 00-00-000.json │ │ ├── 01-00-273.json │ │ ├── 02-00-307.json │ │ ├── 03-00-314.json │ │ ├── 04-00-332.json │ │ ├── 05-00-338.json │ │ ├── 06-00-365.json │ │ ├── 07-00-370.json │ │ ├── 08-00-374.json │ │ ├── 09-00-390.json │ │ ├── 10-00-415.json │ │ ├── 11-00-411.json │ │ ├── 12-00-428.json │ │ ├── 13-00-458.json │ │ ├── 14-00-450.json │ │ ├── 15-00-460.json │ │ ├── 16-00-490.json │ │ ├── 17-00-468.json │ │ ├── 18-00-494.json │ │ ├── 19-00-511.json │ │ ├── 20-00-535.json │ │ ├── 21-00-544.json │ │ ├── 22-00-569.json │ │ ├── 23-00-566.json │ │ ├── 24-00-587.json │ │ ├── 25-00-593.json │ │ ├── 26-00-604.json │ │ ├── 27-00-621.json │ │ ├── 28-00-636.json │ │ └── 29-00-647.json │ ├── Session_2 │ │ ├── 00-00-000.json │ │ ├── 01-00-280.json │ │ ├── 02-00-311.json │ │ ├── 03-00-324.json │ │ ├── 04-00-343.json │ │ ├── 05-00-343.json │ │ ├── 06-00-371.json │ │ ├── 11-00-424.json │ │ ├── 12-00-440.json │ │ ├── 13-00-454.json │ │ ├── 14-00-465.json │ │ ├── 15-00-477.json │ │ ├── 16-00-507.json │ │ ├── 17-00-495.json │ │ ├── 18-00-503.json │ │ ├── 19-00-525.json │ │ ├── 20-00-548.json │ │ ├── 21-00-556.json │ │ ├── 22-00-566.json │ │ ├── 23-00-586.json │ │ ├── 24-00-597.json │ │ ├── 25-00-605.json │ │ ├── 26-00-616.json │ │ ├── 27-00-633.json │ │ ├── 28-00-641.json │ │ └── 29-00-665.json │ ├── Session_3 │ │ ├── 00-00-000.json │ │ ├── 01-00-292.json │ │ ├── 02-00-318.json │ │ ├── 03-00-330.json │ │ ├── 04-00-342.json │ │ ├── 05-00-352.json │ │ ├── 06-00-368.json │ │ ├── 07-00-378.json │ │ ├── 08-00-387.json │ │ ├── 09-00-404.json │ │ ├── 10-00-415.json │ │ ├── 11-00-420.json │ │ ├── 12-00-454.json │ │ ├── 13-00-471.json │ │ ├── 14-00-458.json │ │ ├── 15-00-472.json │ │ ├── 16-00-498.json │ │ ├── 17-00-492.json │ │ ├── 18-00-509.json │ │ ├── 19-00-533.json │ │ ├── 20-00-552.json │ │ ├── 21-00-561.json │ │ ├── 22-00-564.json │ │ ├── 23-00-586.json │ │ ├── 24-00-607.json │ │ ├── 25-00-599.json │ │ ├── 26-00-611.json │ │ └── 27-00-641.json │ ├── Session_4 │ │ ├── 00-00-000.json │ │ ├── 01-00-293.json │ │ ├── 02-00-322.json │ │ ├── 03-00-332.json │ │ ├── 04-00-349.json │ │ ├── 05-00-353.json │ │ ├── 06-00-363.json │ │ ├── 07-00-382.json │ │ ├── 08-00-381.json │ │ ├── 09-00-400.json │ │ ├── 10-00-415.json │ │ ├── 11-00-428.json │ │ ├── 15-00-480.json │ │ ├── 16-00-501.json │ │ ├── 17-00-478.json │ │ ├── 18-00-512.json │ │ ├── 19-00-532.json │ │ ├── 20-00-540.json │ │ ├── 21-00-559.json │ │ ├── 22-00-570.json │ │ ├── 23-00-578.json │ │ ├── 24-00-594.json │ │ ├── 25-00-599.json │ │ ├── 26-00-615.json │ │ ├── 27-00-632.json │ │ ├── 28-00-637.json │ │ ├── 29-00-654.json │ │ ├── 30-00-679.json │ │ └── 31-00-672.json │ ├── Session_5 │ │ ├── 00-00-000.json │ │ ├── 01-00-296.json │ │ ├── 02-00-325.json │ │ ├── 04-00-354.json │ │ ├── 05-00-353.json │ │ ├── 06-00-368.json │ │ ├── 07-00-386.json │ │ ├── 08-00-399.json │ │ ├── 09-00-410.json │ │ ├── 10-00-432.json │ │ ├── 11-00-440.json │ │ ├── 12-00-443.json │ │ ├── 13-00-467.json │ │ ├── 14-00-472.json │ │ ├── 15-00-480.json │ │ ├── 16-00-507.json │ │ ├── 17-00-506.json │ │ ├── 18-00-515.json │ │ ├── 19-00-546.json │ │ ├── 20-00-547.json │ │ ├── 21-00-571.json │ │ ├── 22-00-578.json │ │ ├── 23-00-589.json │ │ ├── 24-00-606.json │ │ ├── 25-00-618.json │ │ ├── 26-00-635.json │ │ ├── 27-00-643.json │ │ ├── 28-00-651.json │ │ └── 29-00-669.json │ ├── Session_6 │ │ ├── 00-00-000.json │ │ ├── 01-00-282.json │ │ ├── 02-00-327.json │ │ ├── 03-00-327.json │ │ ├── 04-00-343.json │ │ ├── 05-00-364.json │ │ ├── 06-00-370.json │ │ ├── 07-00-378.json │ │ ├── 08-00-378.json │ │ ├── 09-00-402.json │ │ ├── 10-00-414.json │ │ ├── 11-00-421.json │ │ ├── 12-00-430.json │ │ ├── 13-00-463.json │ │ ├── 14-00-452.json │ │ ├── 15-00-467.json │ │ ├── 16-00-500.json │ │ ├── 17-00-489.json │ │ ├── 18-00-507.json │ │ ├── 19-00-529.json │ │ ├── 20-00-540.json │ │ ├── 21-00-551.json │ │ ├── 22-00-562.json │ │ ├── 23-00-573.json │ │ ├── 24-00-595.json │ │ ├── 25-00-594.json │ │ ├── 26-00-615.json │ │ ├── 27-00-644.json │ │ ├── 28-00-648.json │ │ └── 29-00-649.json │ ├── Session_7 │ │ ├── 00-00-000.json │ │ ├── 01-00-279.json │ │ ├── 02-00-303.json │ │ ├── 03-00-324.json │ │ ├── 04-00-340.json │ │ ├── 05-00-343.json │ │ ├── 09-00-396.json │ │ ├── 10-00-413.json │ │ ├── 11-00-420.json │ │ ├── 12-00-436.json │ │ ├── 13-00-450.json │ │ ├── 14-00-454.json │ │ ├── 15-00-474.json │ │ ├── 16-00-492.json │ │ ├── 17-00-482.json │ │ ├── 18-00-515.json │ │ ├── 19-00-519.json │ │ ├── 20-00-532.json │ │ ├── 21-00-564.json │ │ ├── 22-00-562.json │ │ ├── 23-00-574.json │ │ ├── 24-00-593.json │ │ ├── 25-00-603.json │ │ ├── 26-00-614.json │ │ └── 27-00-632.json │ ├── Session_8 │ │ ├── 00-00-000.json │ │ ├── 03-00-333.json │ │ ├── 04-00-344.json │ │ ├── 05-00-355.json │ │ ├── 06-00-370.json │ │ ├── 07-00-384.json │ │ ├── 08-00-392.json │ │ ├── 09-00-399.json │ │ ├── 10-00-419.json │ │ ├── 11-00-419.json │ │ ├── 12-00-449.json │ │ ├── 13-00-458.json │ │ ├── 14-00-460.json │ │ ├── 15-00-480.json │ │ ├── 16-00-499.json │ │ ├── 17-00-491.json │ │ ├── 18-00-506.json │ │ ├── 19-00-519.json │ │ ├── 20-00-537.json │ │ ├── 21-00-566.json │ │ ├── 22-00-556.json │ │ ├── 23-00-574.json │ │ ├── 24-00-604.json │ │ ├── 25-00-599.json │ │ ├── 26-00-622.json │ │ └── 27-00-648.json │ └── Session_9 │ │ ├── 00-00-000.json │ │ ├── 01-00-297.json │ │ ├── 02-00-303.json │ │ ├── 03-00-318.json │ │ ├── 05-00-357.json │ │ ├── 06-00-367.json │ │ ├── 07-00-379.json │ │ ├── 08-00-392.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-431.json │ │ ├── 12-00-437.json │ │ ├── 13-00-468.json │ │ ├── 14-00-459.json │ │ ├── 15-00-476.json │ │ ├── 16-00-501.json │ │ ├── 17-00-493.json │ │ ├── 18-00-514.json │ │ ├── 19-00-537.json │ │ ├── 20-00-546.json │ │ ├── 21-00-564.json │ │ ├── 22-00-577.json │ │ ├── 23-00-584.json │ │ ├── 24-00-597.json │ │ ├── 25-00-610.json │ │ ├── 26-00-620.json │ │ ├── 27-00-643.json │ │ ├── 28-00-653.json │ │ └── 29-00-658.json ├── Glasses_Microphone_Array_Audio │ ├── Session_1 │ │ ├── 00-00-000.wav │ │ ├── 01-00-288.wav │ │ ├── 02-00-310.wav │ │ ├── 03-00-321.wav │ │ ├── 04-00-345.wav │ │ ├── 05-00-347.wav │ │ ├── 06-00-361.wav │ │ ├── 07-00-379.wav │ │ ├── 08-00-383.wav │ │ ├── 09-00-406.wav │ │ ├── 10-00-416.wav │ │ ├── 11-00-439.wav │ │ ├── 12-00-434.wav │ │ ├── 19-00-530.wav │ │ ├── 20-00-543.wav │ │ ├── 21-00-553.wav │ │ ├── 22-00-560.wav │ │ ├── 23-00-599.wav │ │ ├── 24-00-604.wav │ │ ├── 25-00-604.wav │ │ ├── 26-00-613.wav │ │ ├── 27-00-643.wav │ │ ├── 28-00-634.wav │ │ └── 29-00-647.wav │ ├── Session_10 │ │ ├── 00-00-000.wav │ │ ├── 01-00-304.wav │ │ ├── 03-00-332.wav │ │ ├── 04-00-350.wav │ │ ├── 05-00-357.wav │ │ ├── 06-00-364.wav │ │ ├── 07-00-389.wav │ │ ├── 08-00-390.wav │ │ ├── 09-00-403.wav │ │ ├── 10-00-423.wav │ │ ├── 11-00-446.wav │ │ ├── 12-00-438.wav │ │ ├── 13-00-474.wav │ │ ├── 19-00-538.wav │ │ ├── 20-00-540.wav │ │ ├── 21-00-563.wav │ │ ├── 22-00-585.wav │ │ ├── 23-00-577.wav │ │ ├── 24-00-607.wav │ │ ├── 25-00-601.wav │ │ ├── 26-00-618.wav │ │ ├── 27-00-646.wav │ │ ├── 28-00-653.wav │ │ └── 29-00-656.wav │ ├── Session_11 │ │ ├── 00-00-000.wav │ │ ├── 02-00-354.wav │ │ ├── 03-00-356.wav │ │ ├── 04-00-368.wav │ │ ├── 05-00-388.wav │ │ ├── 06-00-393.wav │ │ ├── 07-00-415.wav │ │ ├── 08-00-423.wav │ │ ├── 09-00-429.wav │ │ ├── 10-00-445.wav │ │ ├── 11-00-454.wav │ │ ├── 16-00-520.wav │ │ ├── 20-00-568.wav │ │ ├── 21-00-585.wav │ │ ├── 22-00-598.wav │ │ ├── 23-00-605.wav │ │ ├── 24-00-623.wav │ │ ├── 25-00-631.wav │ │ ├── 26-00-642.wav │ │ ├── 27-00-667.wav │ │ ├── 28-00-666.wav │ │ ├── 29-00-684.wav │ │ └── 30-00-709.wav │ ├── Session_12 │ │ ├── 00-00-000.wav │ │ ├── 01-00-273.wav │ │ ├── 02-00-307.wav │ │ ├── 03-00-314.wav │ │ ├── 04-00-332.wav │ │ ├── 05-00-338.wav │ │ ├── 06-00-365.wav │ │ ├── 07-00-370.wav │ │ ├── 08-00-374.wav │ │ ├── 09-00-390.wav │ │ ├── 10-00-415.wav │ │ ├── 11-00-411.wav │ │ ├── 12-00-428.wav │ │ ├── 13-00-458.wav │ │ ├── 14-00-450.wav │ │ ├── 15-00-460.wav │ │ ├── 16-00-490.wav │ │ ├── 17-00-468.wav │ │ ├── 18-00-494.wav │ │ ├── 19-00-511.wav │ │ ├── 20-00-535.wav │ │ ├── 21-00-544.wav │ │ ├── 22-00-569.wav │ │ ├── 23-00-566.wav │ │ ├── 24-00-587.wav │ │ ├── 25-00-593.wav │ │ ├── 26-00-604.wav │ │ ├── 27-00-621.wav │ │ ├── 28-00-636.wav │ │ └── 29-00-647.wav │ ├── Session_2 │ │ ├── 00-00-000.wav │ │ ├── 01-00-280.wav │ │ ├── 02-00-311.wav │ │ ├── 03-00-324.wav │ │ ├── 04-00-343.wav │ │ ├── 05-00-343.wav │ │ ├── 06-00-371.wav │ │ ├── 11-00-424.wav │ │ ├── 12-00-440.wav │ │ ├── 13-00-454.wav │ │ ├── 14-00-465.wav │ │ ├── 15-00-477.wav │ │ ├── 16-00-507.wav │ │ ├── 17-00-495.wav │ │ ├── 18-00-503.wav │ │ ├── 19-00-525.wav │ │ ├── 20-00-548.wav │ │ ├── 21-00-556.wav │ │ ├── 22-00-566.wav │ │ ├── 23-00-586.wav │ │ ├── 24-00-597.wav │ │ ├── 25-00-605.wav │ │ ├── 26-00-616.wav │ │ ├── 27-00-633.wav │ │ ├── 28-00-641.wav │ │ └── 29-00-665.wav │ ├── Session_3 │ │ ├── 00-00-000.wav │ │ ├── 01-00-292.wav │ │ ├── 02-00-318.wav │ │ ├── 03-00-330.wav │ │ ├── 04-00-342.wav │ │ ├── 05-00-352.wav │ │ ├── 06-00-368.wav │ │ ├── 07-00-378.wav │ │ ├── 08-00-387.wav │ │ ├── 09-00-404.wav │ │ ├── 10-00-415.wav │ │ ├── 11-00-420.wav │ │ ├── 12-00-454.wav │ │ ├── 13-00-471.wav │ │ ├── 14-00-458.wav │ │ ├── 15-00-472.wav │ │ ├── 16-00-498.wav │ │ ├── 17-00-492.wav │ │ ├── 18-00-509.wav │ │ ├── 19-00-533.wav │ │ ├── 20-00-552.wav │ │ ├── 21-00-561.wav │ │ ├── 22-00-564.wav │ │ ├── 23-00-586.wav │ │ ├── 24-00-607.wav │ │ ├── 25-00-599.wav │ │ ├── 26-00-611.wav │ │ └── 27-00-641.wav │ ├── Session_4 │ │ ├── 00-00-000.wav │ │ ├── 01-00-293.wav │ │ ├── 02-00-322.wav │ │ ├── 03-00-332.wav │ │ ├── 04-00-349.wav │ │ ├── 05-00-353.wav │ │ ├── 06-00-363.wav │ │ ├── 07-00-382.wav │ │ ├── 08-00-381.wav │ │ ├── 09-00-400.wav │ │ ├── 10-00-415.wav │ │ ├── 11-00-428.wav │ │ ├── 15-00-480.wav │ │ ├── 16-00-501.wav │ │ ├── 17-00-478.wav │ │ ├── 18-00-512.wav │ │ ├── 19-00-532.wav │ │ ├── 20-00-540.wav │ │ ├── 21-00-559.wav │ │ ├── 22-00-570.wav │ │ ├── 23-00-578.wav │ │ ├── 24-00-594.wav │ │ ├── 25-00-599.wav │ │ ├── 26-00-615.wav │ │ ├── 27-00-632.wav │ │ ├── 28-00-637.wav │ │ ├── 29-00-654.wav │ │ ├── 30-00-679.wav │ │ └── 31-00-672.wav │ ├── Session_5 │ │ ├── 00-00-000.wav │ │ ├── 01-00-296.wav │ │ ├── 02-00-325.wav │ │ ├── 04-00-354.wav │ │ ├── 05-00-353.wav │ │ ├── 06-00-368.wav │ │ ├── 07-00-386.wav │ │ ├── 08-00-399.wav │ │ ├── 09-00-410.wav │ │ ├── 10-00-432.wav │ │ ├── 11-00-440.wav │ │ ├── 12-00-443.wav │ │ ├── 13-00-467.wav │ │ ├── 14-00-472.wav │ │ ├── 15-00-480.wav │ │ ├── 16-00-507.wav │ │ ├── 17-00-506.wav │ │ ├── 18-00-515.wav │ │ ├── 19-00-546.wav │ │ ├── 20-00-547.wav │ │ ├── 21-00-571.wav │ │ ├── 22-00-578.wav │ │ ├── 23-00-589.wav │ │ ├── 24-00-606.wav │ │ ├── 25-00-618.wav │ │ ├── 26-00-635.wav │ │ ├── 27-00-643.wav │ │ ├── 28-00-651.wav │ │ └── 29-00-669.wav │ ├── Session_6 │ │ ├── 00-00-000.wav │ │ ├── 01-00-282.wav │ │ ├── 02-00-327.wav │ │ ├── 03-00-327.wav │ │ ├── 04-00-343.wav │ │ ├── 05-00-364.wav │ │ ├── 06-00-370.wav │ │ ├── 07-00-378.wav │ │ ├── 08-00-378.wav │ │ ├── 09-00-402.wav │ │ ├── 10-00-414.wav │ │ ├── 11-00-421.wav │ │ ├── 12-00-430.wav │ │ ├── 13-00-463.wav │ │ ├── 14-00-452.wav │ │ ├── 15-00-467.wav │ │ ├── 16-00-500.wav │ │ ├── 17-00-489.wav │ │ ├── 18-00-507.wav │ │ ├── 19-00-529.wav │ │ ├── 20-00-540.wav │ │ ├── 21-00-551.wav │ │ ├── 22-00-562.wav │ │ ├── 23-00-573.wav │ │ ├── 24-00-595.wav │ │ ├── 25-00-594.wav │ │ ├── 26-00-615.wav │ │ ├── 27-00-644.wav │ │ ├── 28-00-648.wav │ │ └── 29-00-649.wav │ ├── Session_7 │ │ ├── 00-00-000.wav │ │ ├── 01-00-279.wav │ │ ├── 02-00-303.wav │ │ ├── 03-00-324.wav │ │ ├── 04-00-340.wav │ │ ├── 05-00-343.wav │ │ ├── 09-00-396.wav │ │ ├── 10-00-413.wav │ │ ├── 11-00-420.wav │ │ ├── 12-00-436.wav │ │ ├── 13-00-450.wav │ │ ├── 14-00-454.wav │ │ ├── 15-00-474.wav │ │ ├── 16-00-492.wav │ │ ├── 17-00-482.wav │ │ ├── 18-00-515.wav │ │ ├── 19-00-519.wav │ │ ├── 20-00-532.wav │ │ ├── 21-00-564.wav │ │ ├── 22-00-562.wav │ │ ├── 23-00-574.wav │ │ ├── 24-00-593.wav │ │ ├── 25-00-603.wav │ │ ├── 26-00-614.wav │ │ └── 27-00-632.wav │ ├── Session_8 │ │ ├── 00-00-000.wav │ │ ├── 03-00-333.wav │ │ ├── 04-00-344.wav │ │ ├── 05-00-355.wav │ │ ├── 06-00-370.wav │ │ ├── 07-00-384.wav │ │ ├── 08-00-392.wav │ │ ├── 09-00-399.wav │ │ ├── 10-00-419.wav │ │ ├── 11-00-419.wav │ │ ├── 12-00-449.wav │ │ ├── 13-00-458.wav │ │ ├── 14-00-460.wav │ │ ├── 15-00-480.wav │ │ ├── 16-00-499.wav │ │ ├── 17-00-491.wav │ │ ├── 18-00-506.wav │ │ ├── 19-00-519.wav │ │ ├── 20-00-537.wav │ │ ├── 21-00-566.wav │ │ ├── 22-00-556.wav │ │ ├── 23-00-574.wav │ │ ├── 24-00-604.wav │ │ ├── 25-00-599.wav │ │ ├── 26-00-622.wav │ │ └── 27-00-648.wav │ └── Session_9 │ │ ├── 00-00-000.wav │ │ ├── 01-00-297.wav │ │ ├── 02-00-303.wav │ │ ├── 03-00-318.wav │ │ ├── 05-00-357.wav │ │ ├── 06-00-367.wav │ │ ├── 07-00-379.wav │ │ ├── 08-00-392.wav │ │ ├── 09-00-403.wav │ │ ├── 10-00-423.wav │ │ ├── 11-00-431.wav │ │ ├── 12-00-437.wav │ │ ├── 13-00-468.wav │ │ ├── 14-00-459.wav │ │ ├── 15-00-476.wav │ │ ├── 16-00-501.wav │ │ ├── 17-00-493.wav │ │ ├── 18-00-514.wav │ │ ├── 19-00-537.wav │ │ ├── 20-00-546.wav │ │ ├── 21-00-564.wav │ │ ├── 22-00-577.wav │ │ ├── 23-00-584.wav │ │ ├── 24-00-597.wav │ │ ├── 25-00-610.wav │ │ ├── 26-00-620.wav │ │ ├── 27-00-643.wav │ │ ├── 28-00-653.wav │ │ └── 29-00-658.wav ├── Head_Bounding_Boxes │ ├── Session_1 │ │ ├── 00-00-000.json │ │ ├── 01-00-288.json │ │ ├── 02-00-310.json │ │ ├── 03-00-321.json │ │ ├── 04-00-345.json │ │ ├── 05-00-347.json │ │ ├── 06-00-361.json │ │ ├── 07-00-379.json │ │ ├── 08-00-383.json │ │ ├── 09-00-406.json │ │ ├── 10-00-416.json │ │ ├── 11-00-439.json │ │ ├── 12-00-434.json │ │ ├── 19-00-530.json │ │ ├── 20-00-543.json │ │ ├── 21-00-553.json │ │ ├── 22-00-560.json │ │ ├── 23-00-599.json │ │ ├── 24-00-604.json │ │ ├── 25-00-604.json │ │ ├── 26-00-613.json │ │ ├── 27-00-643.json │ │ ├── 28-00-634.json │ │ └── 29-00-647.json │ ├── Session_10 │ │ ├── 00-00-000.json │ │ ├── 01-00-304.json │ │ ├── 03-00-332.json │ │ ├── 04-00-350.json │ │ ├── 05-00-357.json │ │ ├── 06-00-364.json │ │ ├── 07-00-389.json │ │ ├── 08-00-390.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-446.json │ │ ├── 12-00-438.json │ │ ├── 13-00-474.json │ │ ├── 19-00-538.json │ │ ├── 20-00-540.json │ │ ├── 21-00-563.json │ │ ├── 22-00-585.json │ │ ├── 23-00-577.json │ │ ├── 24-00-607.json │ │ ├── 25-00-601.json │ │ ├── 26-00-618.json │ │ ├── 27-00-646.json │ │ ├── 28-00-653.json │ │ └── 29-00-656.json │ ├── Session_11 │ │ ├── 00-00-000.json │ │ ├── 02-00-354.json │ │ ├── 03-00-356.json │ │ ├── 04-00-368.json │ │ ├── 05-00-388.json │ │ ├── 06-00-393.json │ │ ├── 07-00-415.json │ │ ├── 08-00-423.json │ │ ├── 09-00-429.json │ │ ├── 10-00-445.json │ │ ├── 11-00-454.json │ │ ├── 16-00-520.json │ │ ├── 20-00-568.json │ │ ├── 21-00-585.json │ │ ├── 22-00-598.json │ │ ├── 23-00-605.json │ │ ├── 24-00-623.json │ │ ├── 25-00-631.json │ │ ├── 26-00-642.json │ │ ├── 27-00-667.json │ │ ├── 28-00-666.json │ │ ├── 29-00-684.json │ │ └── 30-00-709.json │ ├── Session_12 │ │ ├── 00-00-000.json │ │ ├── 01-00-273.json │ │ ├── 02-00-307.json │ │ ├── 03-00-314.json │ │ ├── 04-00-332.json │ │ ├── 05-00-338.json │ │ ├── 06-00-365.json │ │ ├── 07-00-370.json │ │ ├── 08-00-374.json │ │ ├── 09-00-390.json │ │ ├── 10-00-415.json │ │ ├── 11-00-411.json │ │ ├── 12-00-428.json │ │ ├── 13-00-458.json │ │ ├── 14-00-450.json │ │ ├── 15-00-460.json │ │ ├── 16-00-490.json │ │ ├── 17-00-468.json │ │ ├── 18-00-494.json │ │ ├── 19-00-511.json │ │ ├── 20-00-535.json │ │ ├── 21-00-544.json │ │ ├── 22-00-569.json │ │ ├── 23-00-566.json │ │ ├── 24-00-587.json │ │ ├── 25-00-593.json │ │ ├── 26-00-604.json │ │ ├── 27-00-621.json │ │ ├── 28-00-636.json │ │ └── 29-00-647.json │ ├── Session_2 │ │ ├── 00-00-000.json │ │ ├── 01-00-280.json │ │ ├── 02-00-311.json │ │ ├── 03-00-324.json │ │ ├── 04-00-343.json │ │ ├── 05-00-343.json │ │ ├── 06-00-371.json │ │ ├── 11-00-424.json │ │ ├── 12-00-440.json │ │ ├── 13-00-454.json │ │ ├── 14-00-465.json │ │ ├── 15-00-477.json │ │ ├── 16-00-507.json │ │ ├── 17-00-495.json │ │ ├── 18-00-503.json │ │ ├── 19-00-525.json │ │ ├── 20-00-548.json │ │ ├── 21-00-556.json │ │ ├── 22-00-566.json │ │ ├── 23-00-586.json │ │ ├── 24-00-597.json │ │ ├── 25-00-605.json │ │ ├── 26-00-616.json │ │ ├── 27-00-633.json │ │ ├── 28-00-641.json │ │ └── 29-00-665.json │ ├── Session_3 │ │ ├── 00-00-000.json │ │ ├── 01-00-292.json │ │ ├── 02-00-318.json │ │ ├── 03-00-330.json │ │ ├── 04-00-342.json │ │ ├── 05-00-352.json │ │ ├── 06-00-368.json │ │ ├── 07-00-378.json │ │ ├── 08-00-387.json │ │ ├── 09-00-404.json │ │ ├── 10-00-415.json │ │ ├── 11-00-420.json │ │ ├── 12-00-454.json │ │ ├── 13-00-471.json │ │ ├── 14-00-458.json │ │ ├── 15-00-472.json │ │ ├── 16-00-498.json │ │ ├── 17-00-492.json │ │ ├── 18-00-509.json │ │ ├── 19-00-533.json │ │ ├── 20-00-552.json │ │ ├── 21-00-561.json │ │ ├── 22-00-564.json │ │ ├── 23-00-586.json │ │ ├── 24-00-607.json │ │ ├── 25-00-599.json │ │ ├── 26-00-611.json │ │ └── 27-00-641.json │ ├── Session_4 │ │ ├── 00-00-000.json │ │ ├── 01-00-293.json │ │ ├── 02-00-322.json │ │ ├── 03-00-332.json │ │ ├── 04-00-349.json │ │ ├── 05-00-353.json │ │ ├── 06-00-363.json │ │ ├── 07-00-382.json │ │ ├── 08-00-381.json │ │ ├── 09-00-400.json │ │ ├── 10-00-415.json │ │ ├── 11-00-428.json │ │ ├── 15-00-480.json │ │ ├── 16-00-501.json │ │ ├── 17-00-478.json │ │ ├── 18-00-512.json │ │ ├── 19-00-532.json │ │ ├── 20-00-540.json │ │ ├── 21-00-559.json │ │ ├── 22-00-570.json │ │ ├── 23-00-578.json │ │ ├── 24-00-594.json │ │ ├── 25-00-599.json │ │ ├── 26-00-615.json │ │ ├── 27-00-632.json │ │ ├── 28-00-637.json │ │ ├── 29-00-654.json │ │ ├── 30-00-679.json │ │ └── 31-00-672.json │ ├── Session_5 │ │ ├── 00-00-000.json │ │ ├── 01-00-296.json │ │ ├── 02-00-325.json │ │ ├── 04-00-354.json │ │ ├── 05-00-353.json │ │ ├── 06-00-368.json │ │ ├── 07-00-386.json │ │ ├── 08-00-399.json │ │ ├── 09-00-410.json │ │ ├── 10-00-432.json │ │ ├── 11-00-440.json │ │ ├── 12-00-443.json │ │ ├── 13-00-467.json │ │ ├── 14-00-472.json │ │ ├── 15-00-480.json │ │ ├── 16-00-507.json │ │ ├── 17-00-506.json │ │ ├── 18-00-515.json │ │ ├── 19-00-546.json │ │ ├── 20-00-547.json │ │ ├── 21-00-571.json │ │ ├── 22-00-578.json │ │ ├── 23-00-589.json │ │ ├── 24-00-606.json │ │ ├── 25-00-618.json │ │ ├── 26-00-635.json │ │ ├── 27-00-643.json │ │ ├── 28-00-651.json │ │ └── 29-00-669.json │ ├── Session_6 │ │ ├── 00-00-000.json │ │ ├── 01-00-282.json │ │ ├── 02-00-327.json │ │ ├── 03-00-327.json │ │ ├── 04-00-343.json │ │ ├── 05-00-364.json │ │ ├── 06-00-370.json │ │ ├── 07-00-378.json │ │ ├── 08-00-378.json │ │ ├── 09-00-402.json │ │ ├── 10-00-414.json │ │ ├── 11-00-421.json │ │ ├── 12-00-430.json │ │ ├── 13-00-463.json │ │ ├── 14-00-452.json │ │ ├── 15-00-467.json │ │ ├── 16-00-500.json │ │ ├── 17-00-489.json │ │ ├── 18-00-507.json │ │ ├── 19-00-529.json │ │ ├── 20-00-540.json │ │ ├── 21-00-551.json │ │ ├── 22-00-562.json │ │ ├── 23-00-573.json │ │ ├── 24-00-595.json │ │ ├── 25-00-594.json │ │ ├── 26-00-615.json │ │ ├── 27-00-644.json │ │ ├── 28-00-648.json │ │ └── 29-00-649.json │ ├── Session_7 │ │ ├── 00-00-000.json │ │ ├── 01-00-279.json │ │ ├── 02-00-303.json │ │ ├── 03-00-324.json │ │ ├── 04-00-340.json │ │ ├── 05-00-343.json │ │ ├── 09-00-396.json │ │ ├── 10-00-413.json │ │ ├── 11-00-420.json │ │ ├── 12-00-436.json │ │ ├── 13-00-450.json │ │ ├── 14-00-454.json │ │ ├── 15-00-474.json │ │ ├── 16-00-492.json │ │ ├── 17-00-482.json │ │ ├── 18-00-515.json │ │ ├── 19-00-519.json │ │ ├── 20-00-532.json │ │ ├── 21-00-564.json │ │ ├── 22-00-562.json │ │ ├── 23-00-574.json │ │ ├── 24-00-593.json │ │ ├── 25-00-603.json │ │ ├── 26-00-614.json │ │ └── 27-00-632.json │ ├── Session_8 │ │ ├── 00-00-000.json │ │ ├── 03-00-333.json │ │ ├── 04-00-344.json │ │ ├── 05-00-355.json │ │ ├── 06-00-370.json │ │ ├── 07-00-384.json │ │ ├── 08-00-392.json │ │ ├── 09-00-399.json │ │ ├── 10-00-419.json │ │ ├── 11-00-419.json │ │ ├── 12-00-449.json │ │ ├── 13-00-458.json │ │ ├── 14-00-460.json │ │ ├── 15-00-480.json │ │ ├── 16-00-499.json │ │ ├── 17-00-491.json │ │ ├── 18-00-506.json │ │ ├── 19-00-519.json │ │ ├── 20-00-537.json │ │ ├── 21-00-566.json │ │ ├── 22-00-556.json │ │ ├── 23-00-574.json │ │ ├── 24-00-604.json │ │ ├── 25-00-599.json │ │ ├── 26-00-622.json │ │ └── 27-00-648.json │ └── Session_9 │ │ ├── 00-00-000.json │ │ ├── 01-00-297.json │ │ ├── 02-00-303.json │ │ ├── 03-00-318.json │ │ ├── 05-00-357.json │ │ ├── 06-00-367.json │ │ ├── 07-00-379.json │ │ ├── 08-00-392.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-431.json │ │ ├── 12-00-437.json │ │ ├── 13-00-468.json │ │ ├── 14-00-459.json │ │ ├── 15-00-476.json │ │ ├── 16-00-501.json │ │ ├── 17-00-493.json │ │ ├── 18-00-514.json │ │ ├── 19-00-537.json │ │ ├── 20-00-546.json │ │ ├── 21-00-564.json │ │ ├── 22-00-577.json │ │ ├── 23-00-584.json │ │ ├── 24-00-597.json │ │ ├── 25-00-610.json │ │ ├── 26-00-620.json │ │ ├── 27-00-643.json │ │ ├── 28-00-653.json │ │ └── 29-00-658.json ├── Metadata │ ├── Session_1.txt │ ├── Session_10.txt │ ├── Session_11.txt │ ├── Session_12.txt │ ├── Session_2.txt │ ├── Session_3.txt │ ├── Session_4.txt │ ├── Session_5.txt │ ├── Session_6.txt │ ├── Session_7.txt │ ├── Session_8.txt │ └── Session_9.txt ├── Participant_Photos │ ├── Session_1 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_10 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_11 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_12 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_2 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_3 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_4 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_5 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_6 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_7 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── Session_8 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ └── Session_9 │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png ├── Speech_Transcriptions │ ├── Session_1 │ │ ├── 00-00-000.json │ │ ├── 01-00-288.json │ │ ├── 02-00-310.json │ │ ├── 03-00-321.json │ │ ├── 04-00-345.json │ │ ├── 05-00-347.json │ │ ├── 06-00-361.json │ │ ├── 07-00-379.json │ │ ├── 08-00-383.json │ │ ├── 09-00-406.json │ │ ├── 10-00-416.json │ │ ├── 11-00-439.json │ │ ├── 12-00-434.json │ │ ├── 19-00-530.json │ │ ├── 20-00-543.json │ │ ├── 21-00-553.json │ │ ├── 22-00-560.json │ │ ├── 23-00-599.json │ │ ├── 24-00-604.json │ │ ├── 25-00-604.json │ │ ├── 26-00-613.json │ │ ├── 27-00-643.json │ │ ├── 28-00-634.json │ │ └── 29-00-647.json │ ├── Session_10 │ │ ├── 00-00-000.json │ │ ├── 01-00-304.json │ │ ├── 03-00-332.json │ │ ├── 04-00-350.json │ │ ├── 05-00-357.json │ │ ├── 06-00-364.json │ │ ├── 07-00-389.json │ │ ├── 08-00-390.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-446.json │ │ ├── 12-00-438.json │ │ ├── 13-00-474.json │ │ ├── 19-00-538.json │ │ ├── 20-00-540.json │ │ ├── 21-00-563.json │ │ ├── 22-00-585.json │ │ ├── 23-00-577.json │ │ ├── 24-00-607.json │ │ ├── 25-00-601.json │ │ ├── 26-00-618.json │ │ ├── 27-00-646.json │ │ ├── 28-00-653.json │ │ └── 29-00-656.json │ ├── Session_11 │ │ ├── 00-00-000.json │ │ ├── 02-00-354.json │ │ ├── 03-00-356.json │ │ ├── 04-00-368.json │ │ ├── 05-00-388.json │ │ ├── 06-00-393.json │ │ ├── 07-00-415.json │ │ ├── 08-00-423.json │ │ ├── 09-00-429.json │ │ ├── 10-00-445.json │ │ ├── 11-00-454.json │ │ ├── 16-00-520.json │ │ ├── 20-00-568.json │ │ ├── 21-00-585.json │ │ ├── 22-00-598.json │ │ ├── 23-00-605.json │ │ ├── 24-00-623.json │ │ ├── 25-00-631.json │ │ ├── 26-00-642.json │ │ ├── 27-00-667.json │ │ ├── 28-00-666.json │ │ ├── 29-00-684.json │ │ └── 30-00-709.json │ ├── Session_12 │ │ ├── 00-00-000.json │ │ ├── 01-00-273.json │ │ ├── 02-00-307.json │ │ ├── 03-00-314.json │ │ ├── 04-00-332.json │ │ ├── 05-00-338.json │ │ ├── 06-00-365.json │ │ ├── 07-00-370.json │ │ ├── 08-00-374.json │ │ ├── 09-00-390.json │ │ ├── 10-00-415.json │ │ ├── 11-00-411.json │ │ ├── 12-00-428.json │ │ ├── 13-00-458.json │ │ ├── 14-00-450.json │ │ ├── 15-00-460.json │ │ ├── 16-00-490.json │ │ ├── 17-00-468.json │ │ ├── 18-00-494.json │ │ ├── 19-00-511.json │ │ ├── 20-00-535.json │ │ ├── 21-00-544.json │ │ ├── 22-00-569.json │ │ ├── 23-00-566.json │ │ ├── 24-00-587.json │ │ ├── 25-00-593.json │ │ ├── 26-00-604.json │ │ ├── 27-00-621.json │ │ ├── 28-00-636.json │ │ └── 29-00-647.json │ ├── Session_2 │ │ ├── 00-00-000.json │ │ ├── 01-00-280.json │ │ ├── 02-00-311.json │ │ ├── 03-00-324.json │ │ ├── 04-00-343.json │ │ ├── 05-00-343.json │ │ ├── 06-00-371.json │ │ ├── 11-00-424.json │ │ ├── 12-00-440.json │ │ ├── 13-00-454.json │ │ ├── 14-00-465.json │ │ ├── 15-00-477.json │ │ ├── 16-00-507.json │ │ ├── 17-00-495.json │ │ ├── 18-00-503.json │ │ ├── 19-00-525.json │ │ ├── 20-00-548.json │ │ ├── 21-00-556.json │ │ ├── 22-00-566.json │ │ ├── 23-00-586.json │ │ ├── 24-00-597.json │ │ ├── 25-00-605.json │ │ ├── 26-00-616.json │ │ ├── 27-00-633.json │ │ ├── 28-00-641.json │ │ └── 29-00-665.json │ ├── Session_3 │ │ ├── 00-00-000.json │ │ ├── 01-00-292.json │ │ ├── 02-00-318.json │ │ ├── 03-00-330.json │ │ ├── 04-00-342.json │ │ ├── 05-00-352.json │ │ ├── 06-00-368.json │ │ ├── 07-00-378.json │ │ ├── 08-00-387.json │ │ ├── 09-00-404.json │ │ ├── 10-00-415.json │ │ ├── 11-00-420.json │ │ ├── 12-00-454.json │ │ ├── 13-00-471.json │ │ ├── 14-00-458.json │ │ ├── 15-00-472.json │ │ ├── 16-00-498.json │ │ ├── 17-00-492.json │ │ ├── 18-00-509.json │ │ ├── 19-00-533.json │ │ ├── 20-00-552.json │ │ ├── 21-00-561.json │ │ ├── 22-00-564.json │ │ ├── 23-00-586.json │ │ ├── 24-00-607.json │ │ ├── 25-00-599.json │ │ ├── 26-00-611.json │ │ └── 27-00-641.json │ ├── Session_4 │ │ ├── 00-00-000.json │ │ ├── 01-00-293.json │ │ ├── 02-00-322.json │ │ ├── 03-00-332.json │ │ ├── 04-00-349.json │ │ ├── 05-00-353.json │ │ ├── 06-00-363.json │ │ ├── 07-00-382.json │ │ ├── 08-00-381.json │ │ ├── 09-00-400.json │ │ ├── 10-00-415.json │ │ ├── 11-00-428.json │ │ ├── 15-00-480.json │ │ ├── 16-00-501.json │ │ ├── 17-00-478.json │ │ ├── 18-00-512.json │ │ ├── 19-00-532.json │ │ ├── 20-00-540.json │ │ ├── 21-00-559.json │ │ ├── 22-00-570.json │ │ ├── 23-00-578.json │ │ ├── 24-00-594.json │ │ ├── 25-00-599.json │ │ ├── 26-00-615.json │ │ ├── 27-00-632.json │ │ ├── 28-00-637.json │ │ ├── 29-00-654.json │ │ ├── 30-00-679.json │ │ └── 31-00-672.json │ ├── Session_5 │ │ ├── 00-00-000.json │ │ ├── 01-00-296.json │ │ ├── 02-00-325.json │ │ ├── 04-00-354.json │ │ ├── 05-00-353.json │ │ ├── 06-00-368.json │ │ ├── 07-00-386.json │ │ ├── 08-00-399.json │ │ ├── 09-00-410.json │ │ ├── 10-00-432.json │ │ ├── 11-00-440.json │ │ ├── 12-00-443.json │ │ ├── 13-00-467.json │ │ ├── 14-00-472.json │ │ ├── 15-00-480.json │ │ ├── 16-00-507.json │ │ ├── 17-00-506.json │ │ ├── 18-00-515.json │ │ ├── 19-00-546.json │ │ ├── 20-00-547.json │ │ ├── 21-00-571.json │ │ ├── 22-00-578.json │ │ ├── 23-00-589.json │ │ ├── 24-00-606.json │ │ ├── 25-00-618.json │ │ ├── 26-00-635.json │ │ ├── 27-00-643.json │ │ ├── 28-00-651.json │ │ └── 29-00-669.json │ ├── Session_6 │ │ ├── 00-00-000.json │ │ ├── 01-00-282.json │ │ ├── 02-00-327.json │ │ ├── 03-00-327.json │ │ ├── 04-00-343.json │ │ ├── 05-00-364.json │ │ ├── 06-00-370.json │ │ ├── 07-00-378.json │ │ ├── 08-00-378.json │ │ ├── 09-00-402.json │ │ ├── 10-00-414.json │ │ ├── 11-00-421.json │ │ ├── 12-00-430.json │ │ ├── 13-00-463.json │ │ ├── 14-00-452.json │ │ ├── 15-00-467.json │ │ ├── 16-00-500.json │ │ ├── 17-00-489.json │ │ ├── 18-00-507.json │ │ ├── 19-00-529.json │ │ ├── 20-00-540.json │ │ ├── 21-00-551.json │ │ ├── 22-00-562.json │ │ ├── 23-00-573.json │ │ ├── 24-00-595.json │ │ ├── 25-00-594.json │ │ ├── 26-00-615.json │ │ ├── 27-00-644.json │ │ ├── 28-00-648.json │ │ └── 29-00-649.json │ ├── Session_7 │ │ ├── 00-00-000.json │ │ ├── 01-00-279.json │ │ ├── 02-00-303.json │ │ ├── 03-00-324.json │ │ ├── 04-00-340.json │ │ ├── 05-00-343.json │ │ ├── 09-00-396.json │ │ ├── 10-00-413.json │ │ ├── 11-00-420.json │ │ ├── 12-00-436.json │ │ ├── 13-00-450.json │ │ ├── 14-00-454.json │ │ ├── 15-00-474.json │ │ ├── 16-00-492.json │ │ ├── 17-00-482.json │ │ ├── 18-00-515.json │ │ ├── 19-00-519.json │ │ ├── 20-00-532.json │ │ ├── 21-00-564.json │ │ ├── 22-00-562.json │ │ ├── 23-00-574.json │ │ ├── 24-00-593.json │ │ ├── 25-00-603.json │ │ ├── 26-00-614.json │ │ └── 27-00-632.json │ ├── Session_8 │ │ ├── 00-00-000.json │ │ ├── 03-00-333.json │ │ ├── 04-00-344.json │ │ ├── 05-00-355.json │ │ ├── 06-00-370.json │ │ ├── 07-00-384.json │ │ ├── 08-00-392.json │ │ ├── 09-00-399.json │ │ ├── 10-00-419.json │ │ ├── 11-00-419.json │ │ ├── 12-00-449.json │ │ ├── 13-00-458.json │ │ ├── 14-00-460.json │ │ ├── 15-00-480.json │ │ ├── 16-00-499.json │ │ ├── 17-00-491.json │ │ ├── 18-00-506.json │ │ ├── 19-00-519.json │ │ ├── 20-00-537.json │ │ ├── 21-00-566.json │ │ ├── 22-00-556.json │ │ ├── 23-00-574.json │ │ ├── 24-00-604.json │ │ ├── 25-00-599.json │ │ ├── 26-00-622.json │ │ └── 27-00-648.json │ └── Session_9 │ │ ├── 00-00-000.json │ │ ├── 01-00-297.json │ │ ├── 02-00-303.json │ │ ├── 03-00-318.json │ │ ├── 05-00-357.json │ │ ├── 06-00-367.json │ │ ├── 07-00-379.json │ │ ├── 08-00-392.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-431.json │ │ ├── 12-00-437.json │ │ ├── 13-00-468.json │ │ ├── 14-00-459.json │ │ ├── 15-00-476.json │ │ ├── 16-00-501.json │ │ ├── 17-00-493.json │ │ ├── 18-00-514.json │ │ ├── 19-00-537.json │ │ ├── 20-00-546.json │ │ ├── 21-00-564.json │ │ ├── 22-00-577.json │ │ ├── 23-00-584.json │ │ ├── 24-00-597.json │ │ ├── 25-00-610.json │ │ ├── 26-00-620.json │ │ ├── 27-00-643.json │ │ ├── 28-00-653.json │ │ └── 29-00-658.json ├── Tracked_Poses │ ├── Session_1 │ │ ├── 00-00-000.json │ │ ├── 01-00-288.json │ │ ├── 02-00-310.json │ │ ├── 03-00-321.json │ │ ├── 04-00-345.json │ │ ├── 05-00-347.json │ │ ├── 06-00-361.json │ │ ├── 07-00-379.json │ │ ├── 08-00-383.json │ │ ├── 09-00-406.json │ │ ├── 10-00-416.json │ │ ├── 11-00-439.json │ │ ├── 12-00-434.json │ │ ├── 19-00-530.json │ │ ├── 20-00-543.json │ │ ├── 21-00-553.json │ │ ├── 22-00-560.json │ │ ├── 23-00-599.json │ │ ├── 24-00-604.json │ │ ├── 25-00-604.json │ │ ├── 26-00-613.json │ │ ├── 27-00-643.json │ │ ├── 28-00-634.json │ │ └── 29-00-647.json │ ├── Session_10 │ │ ├── 00-00-000.json │ │ ├── 01-00-304.json │ │ ├── 03-00-332.json │ │ ├── 04-00-350.json │ │ ├── 05-00-357.json │ │ ├── 06-00-364.json │ │ ├── 07-00-389.json │ │ ├── 08-00-390.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-446.json │ │ ├── 12-00-438.json │ │ ├── 13-00-474.json │ │ ├── 19-00-538.json │ │ ├── 20-00-540.json │ │ ├── 21-00-563.json │ │ ├── 22-00-585.json │ │ ├── 23-00-577.json │ │ ├── 24-00-607.json │ │ ├── 25-00-601.json │ │ ├── 26-00-618.json │ │ ├── 27-00-646.json │ │ ├── 28-00-653.json │ │ └── 29-00-656.json │ ├── Session_11 │ │ ├── 00-00-000.json │ │ ├── 02-00-354.json │ │ ├── 03-00-356.json │ │ ├── 04-00-368.json │ │ ├── 05-00-388.json │ │ ├── 06-00-393.json │ │ ├── 07-00-415.json │ │ ├── 08-00-423.json │ │ ├── 09-00-429.json │ │ ├── 10-00-445.json │ │ ├── 11-00-454.json │ │ ├── 16-00-520.json │ │ ├── 20-00-568.json │ │ ├── 21-00-585.json │ │ ├── 22-00-598.json │ │ ├── 23-00-605.json │ │ ├── 24-00-623.json │ │ ├── 25-00-631.json │ │ ├── 26-00-642.json │ │ ├── 27-00-667.json │ │ ├── 28-00-666.json │ │ ├── 29-00-684.json │ │ └── 30-00-709.json │ ├── Session_12 │ │ ├── 00-00-000.json │ │ ├── 01-00-273.json │ │ ├── 02-00-307.json │ │ ├── 03-00-314.json │ │ ├── 04-00-332.json │ │ ├── 05-00-338.json │ │ ├── 06-00-365.json │ │ ├── 07-00-370.json │ │ ├── 08-00-374.json │ │ ├── 09-00-390.json │ │ ├── 10-00-415.json │ │ ├── 11-00-411.json │ │ ├── 12-00-428.json │ │ ├── 13-00-458.json │ │ ├── 14-00-450.json │ │ ├── 15-00-460.json │ │ ├── 16-00-490.json │ │ ├── 17-00-468.json │ │ ├── 18-00-494.json │ │ ├── 19-00-511.json │ │ ├── 20-00-535.json │ │ ├── 21-00-544.json │ │ ├── 22-00-569.json │ │ ├── 23-00-566.json │ │ ├── 24-00-587.json │ │ ├── 25-00-593.json │ │ ├── 26-00-604.json │ │ ├── 27-00-621.json │ │ ├── 28-00-636.json │ │ └── 29-00-647.json │ ├── Session_2 │ │ ├── 00-00-000.json │ │ ├── 01-00-280.json │ │ ├── 02-00-311.json │ │ ├── 03-00-324.json │ │ ├── 04-00-343.json │ │ ├── 05-00-343.json │ │ ├── 06-00-371.json │ │ ├── 11-00-424.json │ │ ├── 12-00-440.json │ │ ├── 13-00-454.json │ │ ├── 14-00-465.json │ │ ├── 15-00-477.json │ │ ├── 16-00-507.json │ │ ├── 17-00-495.json │ │ ├── 18-00-503.json │ │ ├── 19-00-525.json │ │ ├── 20-00-548.json │ │ ├── 21-00-556.json │ │ ├── 22-00-566.json │ │ ├── 23-00-586.json │ │ ├── 24-00-597.json │ │ ├── 25-00-605.json │ │ ├── 26-00-616.json │ │ ├── 27-00-633.json │ │ ├── 28-00-641.json │ │ └── 29-00-665.json │ ├── Session_3 │ │ ├── 00-00-000.json │ │ ├── 01-00-292.json │ │ ├── 02-00-318.json │ │ ├── 03-00-330.json │ │ ├── 04-00-342.json │ │ ├── 05-00-352.json │ │ ├── 06-00-368.json │ │ ├── 07-00-378.json │ │ ├── 08-00-387.json │ │ ├── 09-00-404.json │ │ ├── 10-00-415.json │ │ ├── 11-00-420.json │ │ ├── 12-00-454.json │ │ ├── 13-00-471.json │ │ ├── 14-00-458.json │ │ ├── 15-00-472.json │ │ ├── 16-00-498.json │ │ ├── 17-00-492.json │ │ ├── 18-00-509.json │ │ ├── 19-00-533.json │ │ ├── 20-00-552.json │ │ ├── 21-00-561.json │ │ ├── 22-00-564.json │ │ ├── 23-00-586.json │ │ ├── 24-00-607.json │ │ ├── 25-00-599.json │ │ ├── 26-00-611.json │ │ └── 27-00-641.json │ ├── Session_4 │ │ ├── 00-00-000.json │ │ ├── 01-00-293.json │ │ ├── 02-00-322.json │ │ ├── 03-00-332.json │ │ ├── 04-00-349.json │ │ ├── 05-00-353.json │ │ ├── 06-00-363.json │ │ ├── 07-00-382.json │ │ ├── 08-00-381.json │ │ ├── 09-00-400.json │ │ ├── 10-00-415.json │ │ ├── 11-00-428.json │ │ ├── 15-00-480.json │ │ ├── 16-00-501.json │ │ ├── 17-00-478.json │ │ ├── 18-00-512.json │ │ ├── 19-00-532.json │ │ ├── 20-00-540.json │ │ ├── 21-00-559.json │ │ ├── 22-00-570.json │ │ ├── 23-00-578.json │ │ ├── 24-00-594.json │ │ ├── 25-00-599.json │ │ ├── 26-00-615.json │ │ ├── 27-00-632.json │ │ ├── 28-00-637.json │ │ ├── 29-00-654.json │ │ ├── 30-00-679.json │ │ └── 31-00-672.json │ ├── Session_5 │ │ ├── 00-00-000.json │ │ ├── 01-00-296.json │ │ ├── 02-00-325.json │ │ ├── 04-00-354.json │ │ ├── 05-00-353.json │ │ ├── 06-00-368.json │ │ ├── 07-00-386.json │ │ ├── 08-00-399.json │ │ ├── 09-00-410.json │ │ ├── 10-00-432.json │ │ ├── 11-00-440.json │ │ ├── 12-00-443.json │ │ ├── 13-00-467.json │ │ ├── 14-00-472.json │ │ ├── 15-00-480.json │ │ ├── 16-00-507.json │ │ ├── 17-00-506.json │ │ ├── 18-00-515.json │ │ ├── 19-00-546.json │ │ ├── 20-00-547.json │ │ ├── 21-00-571.json │ │ ├── 22-00-578.json │ │ ├── 23-00-589.json │ │ ├── 24-00-606.json │ │ ├── 25-00-618.json │ │ ├── 26-00-635.json │ │ ├── 27-00-643.json │ │ ├── 28-00-651.json │ │ └── 29-00-669.json │ ├── Session_6 │ │ ├── 00-00-000.json │ │ ├── 01-00-282.json │ │ ├── 02-00-327.json │ │ ├── 03-00-327.json │ │ ├── 04-00-343.json │ │ ├── 05-00-364.json │ │ ├── 06-00-370.json │ │ ├── 07-00-378.json │ │ ├── 08-00-378.json │ │ ├── 09-00-402.json │ │ ├── 10-00-414.json │ │ ├── 11-00-421.json │ │ ├── 12-00-430.json │ │ ├── 13-00-463.json │ │ ├── 14-00-452.json │ │ ├── 15-00-467.json │ │ ├── 16-00-500.json │ │ ├── 17-00-489.json │ │ ├── 18-00-507.json │ │ ├── 19-00-529.json │ │ ├── 20-00-540.json │ │ ├── 21-00-551.json │ │ ├── 22-00-562.json │ │ ├── 23-00-573.json │ │ ├── 24-00-595.json │ │ ├── 25-00-594.json │ │ ├── 26-00-615.json │ │ ├── 27-00-644.json │ │ ├── 28-00-648.json │ │ └── 29-00-649.json │ ├── Session_7 │ │ ├── 00-00-000.json │ │ ├── 01-00-279.json │ │ ├── 02-00-303.json │ │ ├── 03-00-324.json │ │ ├── 04-00-340.json │ │ ├── 05-00-343.json │ │ ├── 09-00-396.json │ │ ├── 10-00-413.json │ │ ├── 11-00-420.json │ │ ├── 12-00-436.json │ │ ├── 13-00-450.json │ │ ├── 14-00-454.json │ │ ├── 15-00-474.json │ │ ├── 16-00-492.json │ │ ├── 17-00-482.json │ │ ├── 18-00-515.json │ │ ├── 19-00-519.json │ │ ├── 20-00-532.json │ │ ├── 21-00-564.json │ │ ├── 22-00-562.json │ │ ├── 23-00-574.json │ │ ├── 24-00-593.json │ │ ├── 25-00-603.json │ │ ├── 26-00-614.json │ │ └── 27-00-632.json │ ├── Session_8 │ │ ├── 00-00-000.json │ │ ├── 03-00-333.json │ │ ├── 04-00-344.json │ │ ├── 05-00-355.json │ │ ├── 06-00-370.json │ │ ├── 07-00-384.json │ │ ├── 08-00-392.json │ │ ├── 09-00-399.json │ │ ├── 10-00-419.json │ │ ├── 11-00-419.json │ │ ├── 12-00-449.json │ │ ├── 13-00-458.json │ │ ├── 14-00-460.json │ │ ├── 15-00-480.json │ │ ├── 16-00-499.json │ │ ├── 17-00-491.json │ │ ├── 18-00-506.json │ │ ├── 19-00-519.json │ │ ├── 20-00-537.json │ │ ├── 21-00-566.json │ │ ├── 22-00-556.json │ │ ├── 23-00-574.json │ │ ├── 24-00-604.json │ │ ├── 25-00-599.json │ │ ├── 26-00-622.json │ │ └── 27-00-648.json │ └── Session_9 │ │ ├── 00-00-000.json │ │ ├── 01-00-297.json │ │ ├── 02-00-303.json │ │ ├── 03-00-318.json │ │ ├── 05-00-357.json │ │ ├── 06-00-367.json │ │ ├── 07-00-379.json │ │ ├── 08-00-392.json │ │ ├── 09-00-403.json │ │ ├── 10-00-423.json │ │ ├── 11-00-431.json │ │ ├── 12-00-437.json │ │ ├── 13-00-468.json │ │ ├── 14-00-459.json │ │ ├── 15-00-476.json │ │ ├── 16-00-501.json │ │ ├── 17-00-493.json │ │ ├── 18-00-514.json │ │ ├── 19-00-537.json │ │ ├── 20-00-546.json │ │ ├── 21-00-564.json │ │ ├── 22-00-577.json │ │ ├── 23-00-584.json │ │ ├── 24-00-597.json │ │ ├── 25-00-610.json │ │ ├── 26-00-620.json │ │ ├── 27-00-643.json │ │ ├── 28-00-653.json │ │ └── 29-00-658.json └── Video_Compressed │ ├── Session_1 │ ├── 00-00-000.mp4 │ ├── 01-00-288.mp4 │ ├── 02-00-310.mp4 │ ├── 03-00-321.mp4 │ ├── 04-00-345.mp4 │ ├── 05-00-347.mp4 │ ├── 06-00-361.mp4 │ ├── 07-00-379.mp4 │ ├── 08-00-383.mp4 │ ├── 09-00-406.mp4 │ ├── 10-00-416.mp4 │ ├── 11-00-439.mp4 │ ├── 12-00-434.mp4 │ ├── 19-00-530.mp4 │ ├── 20-00-543.mp4 │ ├── 21-00-553.mp4 │ ├── 22-00-560.mp4 │ ├── 23-00-599.mp4 │ ├── 24-00-604.mp4 │ ├── 25-00-604.mp4 │ ├── 26-00-613.mp4 │ ├── 27-00-643.mp4 │ ├── 28-00-634.mp4 │ └── 29-00-647.mp4 │ ├── Session_10 │ ├── 00-00-000.mp4 │ ├── 01-00-304.mp4 │ ├── 03-00-332.mp4 │ ├── 04-00-350.mp4 │ ├── 05-00-357.mp4 │ ├── 06-00-364.mp4 │ ├── 07-00-389.mp4 │ ├── 08-00-390.mp4 │ ├── 09-00-403.mp4 │ ├── 10-00-423.mp4 │ ├── 11-00-446.mp4 │ ├── 12-00-438.mp4 │ ├── 13-00-474.mp4 │ ├── 19-00-538.mp4 │ ├── 20-00-540.mp4 │ ├── 21-00-563.mp4 │ ├── 22-00-585.mp4 │ ├── 23-00-577.mp4 │ ├── 24-00-607.mp4 │ ├── 25-00-601.mp4 │ ├── 26-00-618.mp4 │ ├── 27-00-646.mp4 │ ├── 28-00-653.mp4 │ └── 29-00-656.mp4 │ ├── Session_11 │ ├── 00-00-000.mp4 │ ├── 02-00-354.mp4 │ ├── 03-00-356.mp4 │ ├── 04-00-368.mp4 │ ├── 05-00-388.mp4 │ ├── 06-00-393.mp4 │ ├── 07-00-415.mp4 │ ├── 08-00-423.mp4 │ ├── 09-00-429.mp4 │ ├── 10-00-445.mp4 │ ├── 11-00-454.mp4 │ ├── 16-00-520.mp4 │ ├── 20-00-568.mp4 │ ├── 21-00-585.mp4 │ ├── 22-00-598.mp4 │ ├── 23-00-605.mp4 │ ├── 24-00-623.mp4 │ ├── 25-00-631.mp4 │ ├── 26-00-642.mp4 │ ├── 27-00-667.mp4 │ ├── 28-00-666.mp4 │ ├── 29-00-684.mp4 │ └── 30-00-709.mp4 │ ├── Session_12 │ ├── 00-00-000.mp4 │ ├── 01-00-273.mp4 │ ├── 02-00-307.mp4 │ ├── 03-00-314.mp4 │ ├── 04-00-332.mp4 │ ├── 05-00-338.mp4 │ ├── 06-00-365.mp4 │ ├── 07-00-370.mp4 │ ├── 08-00-374.mp4 │ ├── 09-00-390.mp4 │ ├── 10-00-415.mp4 │ ├── 11-00-411.mp4 │ ├── 12-00-428.mp4 │ ├── 13-00-458.mp4 │ ├── 14-00-450.mp4 │ ├── 15-00-460.mp4 │ ├── 16-00-490.mp4 │ ├── 17-00-468.mp4 │ ├── 18-00-494.mp4 │ ├── 19-00-511.mp4 │ ├── 20-00-535.mp4 │ ├── 21-00-544.mp4 │ ├── 22-00-569.mp4 │ ├── 23-00-566.mp4 │ ├── 24-00-587.mp4 │ ├── 25-00-593.mp4 │ ├── 26-00-604.mp4 │ ├── 27-00-621.mp4 │ ├── 28-00-636.mp4 │ └── 29-00-647.mp4 │ ├── Session_2 │ ├── 00-00-000.mp4 │ ├── 01-00-280.mp4 │ ├── 02-00-311.mp4 │ ├── 03-00-324.mp4 │ ├── 04-00-343.mp4 │ ├── 05-00-343.mp4 │ ├── 06-00-371.mp4 │ ├── 11-00-424.mp4 │ ├── 12-00-440.mp4 │ ├── 13-00-454.mp4 │ ├── 14-00-465.mp4 │ ├── 15-00-477.mp4 │ ├── 16-00-507.mp4 │ ├── 17-00-495.mp4 │ ├── 18-00-503.mp4 │ ├── 19-00-525.mp4 │ ├── 20-00-548.mp4 │ ├── 21-00-556.mp4 │ ├── 22-00-566.mp4 │ ├── 23-00-586.mp4 │ ├── 24-00-597.mp4 │ ├── 25-00-605.mp4 │ ├── 26-00-616.mp4 │ ├── 27-00-633.mp4 │ ├── 28-00-641.mp4 │ └── 29-00-665.mp4 │ ├── Session_3 │ ├── 00-00-000.mp4 │ ├── 01-00-292.mp4 │ ├── 02-00-318.mp4 │ ├── 03-00-330.mp4 │ ├── 04-00-342.mp4 │ ├── 05-00-352.mp4 │ ├── 06-00-368.mp4 │ ├── 07-00-378.mp4 │ ├── 08-00-387.mp4 │ ├── 09-00-404.mp4 │ ├── 10-00-415.mp4 │ ├── 11-00-420.mp4 │ ├── 12-00-454.mp4 │ ├── 13-00-471.mp4 │ ├── 14-00-458.mp4 │ ├── 15-00-472.mp4 │ ├── 16-00-498.mp4 │ ├── 17-00-492.mp4 │ ├── 18-00-509.mp4 │ ├── 19-00-533.mp4 │ ├── 20-00-552.mp4 │ ├── 21-00-561.mp4 │ ├── 22-00-564.mp4 │ ├── 23-00-586.mp4 │ ├── 24-00-607.mp4 │ ├── 25-00-599.mp4 │ ├── 26-00-611.mp4 │ └── 27-00-641.mp4 │ ├── Session_4 │ ├── 00-00-000.mp4 │ ├── 01-00-293.mp4 │ ├── 02-00-322.mp4 │ ├── 03-00-332.mp4 │ ├── 04-00-349.mp4 │ ├── 05-00-353.mp4 │ ├── 06-00-363.mp4 │ ├── 07-00-382.mp4 │ ├── 08-00-381.mp4 │ ├── 09-00-400.mp4 │ ├── 10-00-415.mp4 │ ├── 11-00-428.mp4 │ ├── 15-00-480.mp4 │ ├── 16-00-501.mp4 │ ├── 17-00-478.mp4 │ ├── 18-00-512.mp4 │ ├── 19-00-532.mp4 │ ├── 20-00-540.mp4 │ ├── 21-00-559.mp4 │ ├── 22-00-570.mp4 │ ├── 23-00-578.mp4 │ ├── 24-00-594.mp4 │ ├── 25-00-599.mp4 │ ├── 26-00-615.mp4 │ ├── 27-00-632.mp4 │ ├── 28-00-637.mp4 │ ├── 29-00-654.mp4 │ ├── 30-00-679.mp4 │ └── 31-00-672.mp4 │ ├── Session_5 │ ├── 00-00-000.mp4 │ ├── 01-00-296.mp4 │ ├── 02-00-325.mp4 │ ├── 04-00-354.mp4 │ ├── 05-00-353.mp4 │ ├── 06-00-368.mp4 │ ├── 07-00-386.mp4 │ ├── 08-00-399.mp4 │ ├── 09-00-410.mp4 │ ├── 10-00-432.mp4 │ ├── 11-00-440.mp4 │ ├── 12-00-443.mp4 │ ├── 13-00-467.mp4 │ ├── 14-00-472.mp4 │ ├── 15-00-480.mp4 │ ├── 16-00-507.mp4 │ ├── 17-00-506.mp4 │ ├── 18-00-515.mp4 │ ├── 19-00-546.mp4 │ ├── 20-00-547.mp4 │ ├── 21-00-571.mp4 │ ├── 22-00-578.mp4 │ ├── 23-00-589.mp4 │ ├── 24-00-606.mp4 │ ├── 25-00-618.mp4 │ ├── 26-00-635.mp4 │ ├── 27-00-643.mp4 │ ├── 28-00-651.mp4 │ └── 29-00-669.mp4 │ ├── Session_6 │ ├── 00-00-000.mp4 │ ├── 01-00-282.mp4 │ ├── 02-00-327.mp4 │ ├── 03-00-327.mp4 │ ├── 04-00-343.mp4 │ ├── 05-00-364.mp4 │ ├── 06-00-370.mp4 │ ├── 07-00-378.mp4 │ ├── 08-00-378.mp4 │ ├── 09-00-402.mp4 │ ├── 10-00-414.mp4 │ ├── 11-00-421.mp4 │ ├── 12-00-430.mp4 │ ├── 13-00-463.mp4 │ ├── 14-00-452.mp4 │ ├── 15-00-467.mp4 │ ├── 16-00-500.mp4 │ ├── 17-00-489.mp4 │ ├── 18-00-507.mp4 │ ├── 19-00-529.mp4 │ ├── 20-00-540.mp4 │ ├── 21-00-551.mp4 │ ├── 22-00-562.mp4 │ ├── 23-00-573.mp4 │ ├── 24-00-595.mp4 │ ├── 25-00-594.mp4 │ ├── 26-00-615.mp4 │ ├── 27-00-644.mp4 │ ├── 28-00-648.mp4 │ └── 29-00-649.mp4 │ ├── Session_7 │ ├── 00-00-000.mp4 │ ├── 01-00-279.mp4 │ ├── 02-00-303.mp4 │ ├── 03-00-324.mp4 │ ├── 04-00-340.mp4 │ ├── 05-00-343.mp4 │ ├── 09-00-396.mp4 │ ├── 10-00-413.mp4 │ ├── 11-00-420.mp4 │ ├── 12-00-436.mp4 │ ├── 13-00-450.mp4 │ ├── 14-00-454.mp4 │ ├── 15-00-474.mp4 │ ├── 16-00-492.mp4 │ ├── 17-00-482.mp4 │ ├── 18-00-515.mp4 │ ├── 19-00-519.mp4 │ ├── 20-00-532.mp4 │ ├── 21-00-564.mp4 │ ├── 22-00-562.mp4 │ ├── 23-00-574.mp4 │ ├── 24-00-593.mp4 │ ├── 25-00-603.mp4 │ ├── 26-00-614.mp4 │ └── 27-00-632.mp4 │ ├── Session_8 │ ├── 00-00-000.mp4 │ ├── 03-00-333.mp4 │ ├── 04-00-344.mp4 │ ├── 05-00-355.mp4 │ ├── 06-00-370.mp4 │ ├── 07-00-384.mp4 │ ├── 08-00-392.mp4 │ ├── 09-00-399.mp4 │ ├── 10-00-419.mp4 │ ├── 11-00-419.mp4 │ ├── 12-00-449.mp4 │ ├── 13-00-458.mp4 │ ├── 14-00-460.mp4 │ ├── 15-00-480.mp4 │ ├── 16-00-499.mp4 │ ├── 17-00-491.mp4 │ ├── 18-00-506.mp4 │ ├── 19-00-519.mp4 │ ├── 20-00-537.mp4 │ ├── 21-00-566.mp4 │ ├── 22-00-556.mp4 │ ├── 23-00-574.mp4 │ ├── 24-00-604.mp4 │ ├── 25-00-599.mp4 │ ├── 26-00-622.mp4 │ └── 27-00-648.mp4 │ └── Session_9 │ ├── 00-00-000.mp4 │ ├── 01-00-297.mp4 │ ├── 02-00-303.mp4 │ ├── 03-00-318.mp4 │ ├── 05-00-357.mp4 │ ├── 06-00-367.mp4 │ ├── 07-00-379.mp4 │ ├── 08-00-392.mp4 │ ├── 09-00-403.mp4 │ ├── 10-00-423.mp4 │ ├── 11-00-431.mp4 │ ├── 12-00-437.mp4 │ ├── 13-00-468.mp4 │ ├── 14-00-459.mp4 │ ├── 15-00-476.mp4 │ ├── 16-00-501.mp4 │ ├── 17-00-493.mp4 │ ├── 18-00-514.mp4 │ ├── 19-00-537.mp4 │ ├── 20-00-546.mp4 │ ├── 21-00-564.mp4 │ ├── 22-00-577.mp4 │ ├── 23-00-584.mp4 │ ├── 24-00-597.mp4 │ ├── 25-00-610.mp4 │ ├── 26-00-620.mp4 │ ├── 27-00-643.mp4 │ ├── 28-00-653.mp4 │ └── 29-00-658.mp4 ├── README.md └── readme └── figures ├── image_0.jpg ├── image_1.jpg ├── image_2.jpg ├── image_3.jpg └── image_4.jpg /.gitattributes: -------------------------------------------------------------------------------- 1 | /Calibration/** filter=lfs diff=lfs merge=lfs -text 2 | /Extra/** filter=lfs diff=lfs merge=lfs -text 3 | /Main/** filter=lfs diff=lfs merge=lfs -text 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/00-00-000.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c638788e8708d246f2e38260cfb5699639bdfa6a43eeb108f853717b737df28 3 | size 994 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/01-02-016.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba0a84d736756ec94876171d4a230b467979e7ffc6551528e47cdd6f82907f88 3 | size 1331 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/02-03-628.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ee9ab01e0d0e39e5bd859f9c7ee19d5df875a3d22757572fb661c51f4b38baa 3 | size 599 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/03-04-388.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4f106136759be9d0fdeffc222f85bd8c14f516d62e50625adc9e90e3c8b1dce 3 | size 901 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/04-05-544.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98f9049150300405f74eb27be038d1e87103297f87c0e7c8cc8d6932be456dcc 3 | size 1974 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/05-07-945.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ab229572542e6431ae88904a44e7770967a5975d51e70784260a610f2e2bedc 3 | size 1243 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/06-09-438.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:819de48e1f8c00af06b7a05d9dc27422320837ea12f213e9cbd6e4978fcb14ce 3 | size 858 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/07-10-474.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7caf0bc5602503f838e53c862d7fde44d9c00f479cd879b490ce489a8e44897c 3 | size 639 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/08-11-279.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c03000487087a12336ebcadb4e8f58f8a468b2085ef5127550de31147b896af 3 | size 123 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_1/09-11-293.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e91006703c15f8732fc94d3cdb004d3b9714a05519215be484c92478912094b7 3 | size 42 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/01-00-596.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:126c751e4fde37c0ec5f2f95e9821428680d366eabe6651cb08e04ecafb358d0 3 | size 1803 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/02-02-774.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccb4588ff174769da60dd36a3c9dcb993c0c2e27062dee584d3f113c24964d5c 3 | size 297 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/03-03-171.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92ac482c87fda2a5955357028b7f1648a2869ff1974f036482c3a425ceb6b80c 3 | size 2066 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/04-05-646.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24d723a1d03d883fd2c47eafe809245cc32a3379153b8e1c51baa0e1d80ba328 3 | size 1115 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/05-06-998.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7a540b63b3cb952c4ffa24dab0c7462ec98323afa3eaad4b596c5eb4027e77f 3 | size 1675 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/06-09-010.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b9ec77abb3cfe47cd2fad64a60ee7bc4a4faa69c3358b366b808307e1ed2176 3 | size 1805 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/07-11-095.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02143245a0c3f94c281de7a0b9bb1a0953c627d61e389a52b541c75ef7a36b31 3 | size 1674 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/08-13-123.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6867ef380d8b587e81c0d1c3e9c8d149f0c7b6fbb32a382efc6d43881404d391 3 | size 1506 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/09-14-966.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad8e9d2cff1414e9e3e43aca4a773bd0667410e0d610d5049f22f523d337bd9f 3 | size 858 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/10-15-995.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66fd4fd0e36dfe8d73105cc3daa748b5a1e54c1acfb0d7dcbf9e85ccd7cb8421 3 | size 1718 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/11-18-048.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3fffa72b9e802fb7e1d89e771eca022167f8948a09cbed1f58e1f305d0645e2d 3 | size 1804 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/12-20-196.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:996809d4529d9bba373862ccac244b03f0df976fe903a20175483aeb3bc62c07 3 | size 1675 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/13-22-217.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42825831a466b56a955496a2317560fa77b75beb42c5b770a5f0643b98b7983f 3 | size 1933 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/14-24-522.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dfe75bece99bae44d4b692a863e9561efdfeabb43e813c409a9f7624cbfb2786 3 | size 1071 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/15-25-810.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f4fb23844b303df2eca1dd4549ce7313669a5db19ab0fbde160430872ab06081 3 | size 1417 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/16-27-576.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a562c904add23a2935b6c9b5d2580e8ba4eb51f9005ef45219bde439348936a 3 | size 1070 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/17-28-782.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dab9730729a94c802af2d89301bab7b11e84e5befb22b018206ca6d2aa07925e 3 | size 1417 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/18-30-486.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bbfaf6485c70d8cdaabab796b57f2618720efe2095bc7a029e80eed4c224bb9 3 | size 1976 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/19-32-834.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1450c3d81deb6f117cca713914ceb3d74f36107a0a800e1ddaacf67e2130ac3a 3 | size 1634 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/20-34-816.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86a4a3b4e9f6f6572a54a5a280ce9d17ff8a11077263c8f4c1636d77e2687c2f 3 | size 1590 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/21-36-693.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:904e02fb7907f5015d396fb4595f5555fd94d3e8c07b9ebd0a9b17f6a3520005 3 | size 1287 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/22-38-212.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5333471ff976efd804cb88779d76361eba002c78af93b177af7485c8cec10f13 3 | size 1634 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/23-40-216.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f814df285d7e7e3ab656f739fd49c8e4393cb17ac9748441f6c0cf21eb12573 3 | size 2021 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_2/24-42-584.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:049731b4d61437853f311ad355f0c20a69f44ace4b64279c6049c0a23c8e3bba 3 | size 1677 4 | -------------------------------------------------------------------------------- /Extra/Frame_Drops/ExtraSession_3/03-00-156.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:318fbe9171352fcdb935bd5fd9efdfceb9f41da35c19f460ef209f4585b815b5 3 | size 1032 4 | -------------------------------------------------------------------------------- /Extra/Metadata/ExtraSession_1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Extra/Metadata/ExtraSession_2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Extra/Metadata/ExtraSession_3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:262c18d9901d93c5ac13aaf4d77d0554dd3f6efeb608cdf2481b707c4c2f6a16 3 | size 130264 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eae08a8870dfaa4941b5795cab260b65a5d02581bed754531a858ca391c3f024 3 | size 131412 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_1/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86907237ab1f19cb2dceb777810239f90ce716bd109dfd7342b00d3445ab8fd2 3 | size 90014 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f090ba669010fb80cddc54dc102e5f4aa5becde82357a818501b5b5dbb2b8ba8 3 | size 132384 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_2/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24837faa3bd34656621e97da1686a99ceb2ec2a2911edaf4d01037a6b82dd367 3 | size 101089 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02a37d81649c23aabe83cdd6e8fb3b6200e53ec747737e4864790f64ccff6633 3 | size 118252 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Extra/Participant_Photos/ExtraSession_3/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c60a93508247f74548989c9824e115e62705aa86817c9cc5d7254232f5c2261 3 | size 138332 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebc98776129423ffb98fcec554b175137fcb64d1939cee00b78d663ddda54365 3 | size 1435843 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/01-02-016.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fd69c656a58c1e12f0a3836b430755d9cecd2bdb7b723d325c72ca982168ede 3 | size 1436474 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/02-03-628.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:988d280daf0bc73e8e09e3c6521ac580b932f40f09c9a20e2c83ceacf1c6a818 3 | size 1435830 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/03-04-388.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bde822ff90f355f9ff8e1195a93aa25a3e41f56504ee8a2bdecfe2b6eab7d2fb 3 | size 1437916 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/04-05-544.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:500dffa66bd7e81387cfa449801d294c5e154f70a9438ff3140ed2a912376470 3 | size 1435691 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/05-07-945.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3bfbcf719a809cd792d4848771e699a1c3ba39ef9cc6fb00dd6e9f61397a4d69 3 | size 1435422 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/06-09-438.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dedf6d7bcb4ff555e3871b7dabd9b856d7aaf6f29e22eb20a64f063cad40b863 3 | size 1434738 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/07-10-474.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9002c903b27d0801a1f3ddc15fb8003cf15d1fa0f0791039e8594ff92f84a653 3 | size 1434917 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/08-11-279.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:238ad53345e9d89fbb888edfda19b659d0a0be5ca38f38306542e179d05f3af4 3 | size 1433847 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/09-11-293.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7ceb29491b26bb2c9b38d0622d45e0f5cf1f1ef9222c35f7f8d4b18324dd01e 3 | size 1433810 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/15-11-145.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:995d9ad345464b272c135f1e75fa0994c2e28f07ded36fb602fbcf331074b44f 3 | size 1437014 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/16-11-154.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eec5b9675b6965e173136cb73ad867a80f567d517fb70c653953902023e764a4 3 | size 1436783 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/17-11-168.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60c0af249e924f8f70b59800a903365575fd396daa35b751588fad8cf018f80f 3 | size 1437310 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/18-11-180.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00a1ae478eb119db812d2e68faa0f69b9718fd6f8d5595e54d4750a7d12e428f 3 | size 1437376 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/19-11-209.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f12a5b7a7b3c8579c4cd5ab3a772b9ac27a925c9ecf87f8bb521aabed9b25002 3 | size 1436926 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/20-11-206.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad11a89cfd8f82515945fe459119cecf0c06ffad9d091a3fc10bcf04d65ccb52 3 | size 1437176 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/21-11-224.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f5063c1c5b35eb2b26ebf60d6c12382682d2e86a575a49a22dc593911947498 3 | size 1437100 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/22-11-240.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c87e685c542312b2e06a84fe3c291ab3b55a5848a30493a67e9a7ce52c94628 3 | size 1436519 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/23-11-246.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87c4e82ef6a6b7308b37add619457c70268764f71e5d94d6d01ca6e9aab5a6f9 3 | size 1437606 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/24-11-261.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b63c8c447e918155e4887630327b8e981fe63c6394bb0620dd992d5a3c7ada1 3 | size 1438161 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/25-11-270.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0c2a624884580de1ccd9870c7c79d650cf0e7da8434271c4cd1da5ec9737d0f 3 | size 1437464 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/26-11-280.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce67db0df93574894fdeb9da6c16a802fe08b9331fc1452cbf883d1aac60a321 3 | size 1437631 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_1/27-11-299.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:daab8f95848dc6d26ed368a09d1d4e7d3b6e9b5511faefd9aed66667a6c00c2d 3 | size 1290091 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c49e1c016b861394d9ac14c5217ef8ebad834521f11d826239b4ed6908b91f 3 | size 1434423 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/01-00-596.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b8527fc93d5a42ccc43ed868419a6f67b8c738ec793f298cdefb0accc372502 3 | size 1434139 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/02-02-774.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cfc292e4d12105bd39669a984875c80393ea7a31c6951432adf8689ff6ab058 3 | size 1432292 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/03-03-171.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c79cc10724ed6feb71375052fedeffbcf938a027d6b2b64b4a7c6cb95724d9bd 3 | size 1432940 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/04-05-646.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b58927b7e469ad34fb49a46077d969c56c0a759eb41a22183b3009c2db180b8 3 | size 1433496 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/05-06-998.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ff0ecbb4b58d8fb9ec8336a207a3841be27fdd376aa50ea44144ef922b6ae81 3 | size 1431023 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/06-09-010.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7607fc0bb52c26dd38c8e0340dedb83bd0dd63dcc575a9587813f1471a7b94c3 3 | size 1432007 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/07-11-095.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e435425c71ad247fce8620fccbe7846eedbb8cd7eddab2ef7a22d4b9d8de0d2 3 | size 1433046 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/08-13-123.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e7ee74f30b4872d7698cee324e8cd92d314641cbfd5b5bd422c093123dcc0ff 3 | size 1431787 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/09-14-966.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3b572e32ce63d756a1f92ea03a75657181312cbb8c87fdb2c8faff1ac76629b 3 | size 1434716 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/10-15-995.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22dcea8080e364525ad4119c6a8da51b132ceb84ac7998d6421355ddee1d7223 3 | size 1434286 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/11-18-048.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2dad9324c94454dec4188f8a990b8bbd8b7b384b789799514a872738a4bf5fd3 3 | size 1431654 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/12-20-196.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc544d38b2fbc900c4cefaa9159df4e894326267b27cdaea060dcd77bf730534 3 | size 1431319 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/13-22-217.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4908f7ee9683202d307f4459e2943f7fe41a9c7c69bb495b1a8918aa46953c0 3 | size 1431930 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/14-24-522.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9dcd0cbfaba5e59a9b5c0ea6139c2be83ba43a0db74ce02386cf5cbd5e60889 3 | size 1431691 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/15-25-810.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59c1ee0c44884b51ebcd01482b0fbc51d52773ef0879e7000ea5e293d7b1d895 3 | size 1432821 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/16-27-576.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d7f5bce825ef9923c4d5a10ac3201ad9f798990ff15c378c327e819e1503a2a 3 | size 1432867 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/17-28-782.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6f442dc8f522e0f473e59940b5da4bbf8a7ab7e96ca9eadb619020f581b0414 3 | size 1433927 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/18-30-486.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6fde0e7abba5c23114b63d500966a76e1682d88db193f2f158b9e2e8dbd4d74 3 | size 1433692 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/19-32-834.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db0febdca63b4d2b60d6278f58885ec37428473de182bf8e18551dda5112aebf 3 | size 1432878 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/20-34-816.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a93138bca1ccfe41672bd65a3edb7fd76b01c840ac288d8eff5bedc6f2e633e 3 | size 1433195 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/21-36-693.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:438b5ae064a310d3b065d98ac3fc57f7e97e3d087b43fe3110755b88621a74dc 3 | size 1433440 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/22-38-212.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adce1614603e33e5cbea0ecf08122909d6556b6eac40d90d6652656aede0c8cd 3 | size 1433203 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/23-40-216.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:108536ef4462f85b7ad9aa37967755f34cb1c2349914e26595ca0966e6fabd1b 3 | size 1432002 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_2/24-42-584.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97f402036a7361c25867da39d251ff1431c36326390a481c4f71269068510a6b 3 | size 1430841 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:022df0a29f8ce73f2d1da14e08cce40780430d2a295506318c8cc6279d88efed 3 | size 1884349 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/01-00-112.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d99d39463e48329b7f5ff258d8fa98316bd2b01928abb0dddf5eaaf0a6a57fe 3 | size 1885111 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/02-00-146.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9376f00e9e4e36b244d73ee23b114c0511a362358d6cf61395b515c4de9008f 3 | size 1885259 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/03-00-156.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a840755aefd1417391d4854046c140115dd53a6be97fc8ef0f65e3fa3b028454 3 | size 1884834 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/04-01-965.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7420349b340dafda0bfd0e411e6c2f80446e81e8b5d72f2504001fd54676bfa9 3 | size 1885563 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/05-01-976.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e7d2863723746fb13c66daa8223b88296b1254d2cae5658afecc597bf44ed47 3 | size 1884052 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/06-02-003.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0934eea12786fd38483b5d55b98a6b36b43f7482699009a71c6ff8988fca986f 3 | size 1883506 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/07-01-992.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2db8dd725962365fef6c3e47837b40bd006ef90e9ba9b6f475994a49921a818 3 | size 1884858 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/08-02-018.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17d217e8731ee5fbd66b94c50b32b681273dac18adb86d0427c70754c2fbfe31 3 | size 1884381 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/09-02-044.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45535021325087bf3551d2b83f442d5762ba4b72d4ac319fbc6e5c237b8470cc 3 | size 1884738 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/10-02-028.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb745817fa8249c80eab4918d5da51f04f6beef823d557e4f0fb41e25f691570 3 | size 1884583 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/11-02-045.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34ba5252c0e966421ef4d0553ecabe41ddf9d315fe447bb3682555c073b648f2 3 | size 1884518 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/12-02-066.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92918564f8406b7d29595957be9676703ec6d79359db0ccecbe8a6a8a0d2ddc8 3 | size 1885050 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/13-02-083.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a756a7b5c0e64eab402db07c9d74f6160eb1b0e788919a8f45a4add6b90048f3 3 | size 1884856 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/14-02-101.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3046f765974155eb722650f99d3227ade5b33a5ab151e2759695df7f4c2fd01d 3 | size 1884864 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/15-02-100.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6f04e6008ad5fdc528d7215c8a048f7c1be7be2bc798fdca21659add29e9e6 3 | size 1885246 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/16-02-119.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c648eda368cf6b6a598324cc010752823a53c8596a848a8a125337b2fca49d3 3 | size 1885558 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/17-02-131.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8cad6cf1927751557fe7acf0ae814ee5e3bbffdeb2ab870604d5c824d7d6d58 3 | size 1883916 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/18-02-143.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b7d02bc411d2a3c8870eea6b3b31099f54fdb57520e3ce829ee2738c8d777b7 3 | size 1884342 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/19-02-150.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abfbfbe5faae70219d215e8ae6b725e119651320dc38173f3d70e67dca9756c8 3 | size 1882798 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/20-02-192.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a15e4b57b41144c9a95960e328c324feccf34642ffeae661f4211c9a56842b0f 3 | size 1882632 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/21-02-177.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:244e7fdd3d472822cd67e078d125c3b3c3bf0cb51c26af222fe13e11e58bbe6e 3 | size 1882860 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/22-02-187.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:091a680213a694d405ec4406608b0e59b6fcf5c089816bfa3f7854ab2f22348f 3 | size 1883305 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/23-02-225.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5396783f47761cf1cbf241b1d0008fad06ffd7282d6bdaf28ccf55bf8e2a6c28 3 | size 1883146 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/24-02-213.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d953d2ed909766dd3de56a6327cf68339ba054c2f0d5043ab9dfbf8929452c3c 3 | size 1882787 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/25-02-252.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f39a135e89d0e9cd33515db487a178f37660ced009a4173250fbd629e6bdd77 3 | size 1883751 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/26-02-249.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7b1629d0782f3212edf23c7a2b5f899653780ffe4dabb3c67bc3f3ab19deb6f 3 | size 1882801 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/27-02-254.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84d7a56d87f86854c2113f564f3137f9bc0d63ecfc499aedd16a1a10c7ff1187 3 | size 1882619 4 | -------------------------------------------------------------------------------- /Extra/Tracked_Poses/ExtraSession_3/28-02-263.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e12f9f2f9baeef8f6377f4e3b3d278d5065fd298c5208809f8190dd3f31db60 3 | size 1368111 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f07a95150d399ea1b967ca34ce6f9158b65058df7e4776d64df50fa0719fed6b 3 | size 556866 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/01-00-288.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83a03de25f9c9d91dbfd0c5fa09693f44b79834b679eae07aa3a6202e675cb98 3 | size 577564 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/02-00-310.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef2d92dfcfac6d571d2c672f958f47386b3163d19449ae2766639c1f7eb11292 3 | size 574701 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/03-00-321.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adbd6242323bcf11984f450ec0e839fecc6ca2fafd988aaca0e957e6f9965735 3 | size 567963 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/04-00-345.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ed641c7edff89de07959b9fc60153954cd17843745e6808e43a70db5b8f961f 3 | size 637535 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/05-00-347.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e11c186ee40620061e4a95d0e5a62b3bdd736e4cbf6055f65e1e8b5dad116ae1 3 | size 617873 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/06-00-361.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:537f337afc611c97653d43a69ff54c8efe544d9df2111ded326c313915d081d8 3 | size 533756 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/07-00-379.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ede2fb6556fdba69a846cce995ae33f881c60b309d6ccbd2770950eb4c0edf7 3 | size 533160 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/08-00-383.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:445a701217c848c71c0604a336b0905861219288bdd666c31d920055c40863fe 3 | size 532996 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/09-00-406.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60f087633f2d99c52424121248caa018ecf0af3bee8a4b9620d20880ead744be 3 | size 533112 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/10-00-416.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:207f29fb2d2a604f904c87efa5a3a7f4efd3d71380d44efa4ea9a4ce95eafbb4 3 | size 533152 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/11-00-439.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9ec729f26fae2e6ec8be9b09c09f63770353855b851c3390d049c98664ddd57 3 | size 527873 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/12-00-434.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:872d2faf978d87904dd41aa558df775b7af445141deba3266210c58fb3110223 3 | size 539589 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/19-00-530.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:94e0f8a3aa3187b407219b3b63aff69604774a9241768263a6ff9525f7643b30 3 | size 522574 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/20-00-543.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:951e93824f1ee831fd0464ad3f3ab71b8bea213130ccb92ab59f75a4a70a0277 3 | size 533444 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/21-00-553.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8f872dfe61b5b0dc0d61df9ae9f79bbbc3bcc45064929e1daae14fea95170cc 3 | size 517372 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/22-00-560.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:097c478ab393f4118e5a6ff809479ff4e74c337b112a060a62f20ded3e7912a9 3 | size 495520 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/23-00-599.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b45aa37f6c7218d82059e0390af2ee8b85f9c328e131e3bfaadbb636ef99ae86 3 | size 432227 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/24-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b63b444030bfefd490f42e7dd402f0b26676fbd096683b01f393e4b356278587 3 | size 482588 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/25-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eff6d2b5a0e4e7b358bb89ca0f57d39cf3586ed6d825f1363d9b81cf02c8f909 3 | size 576844 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/26-00-613.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0169d6bce7e7ac605f47798047e780500f9ea019fcb4aafcbdc3cf266144cf3 3 | size 556562 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/27-00-643.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eef495228f839d433f2e8eef49e9293bc3fb8c5f64166263e3c705a040518aa 3 | size 532896 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/28-00-634.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebacd4c29c3ff06938dc26172a8be6a47f3f682c455ca134f686681ac456da99 3 | size 532896 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_1/29-00-647.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61b324c098eba0a426a7771e687b6ed6e4fef7a0a65f88367d30b4ab5129ea0a 3 | size 68013 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:660de3deae22217e7397cbf81264fbf1a9052dadb0aa51e7d8f2dcdd3d3b35a1 3 | size 546073 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/01-00-304.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a3ef25b7b701c3e4f37279e392376b0d96e2b8ecd35042e457dad40e3a76504 3 | size 538144 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/03-00-332.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80ee51f4e6fa7f8b459801e473de687970b4246ea4d24b0932311cde86bdedce 3 | size 598270 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/04-00-350.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:786bc27b85dc65557ebea577d826eae55332efd408d7d3f69a4db49bc29f0b4e 3 | size 584559 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/05-00-357.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:536c12b0dd14cd9bcecf39b8bb6edce45911d1150ace0c583ee8c8698d2f5fc4 3 | size 608899 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/06-00-364.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9248c2aec79ce2d6716e127528f9abc06c274e9bc2e1bc14452295f13a948ad6 3 | size 561144 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/07-00-389.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a8968db1b74e08fa7fe0a0ea1985f531ce369393e5249c1770e8401e63d1fd2 3 | size 623558 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/08-00-390.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b18934a237036bb2955dfd26cef4b7cda13052af87acaeaad386b7f5625d056e 3 | size 539759 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/09-00-403.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c24c644be9ae0b028b37ae8cb6ecbe44a2de543e1fcf198f91cf3984b5c935f 3 | size 507635 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/10-00-423.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd95bdbd08b607523267236ecc88e6fdc13717a87ed76f6bf890384b463a4be2 3 | size 532972 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/11-00-446.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ed7d9d69c38ec7c8eba8698e5036d44c804a06096851cb637ec1a32effc5b2b 3 | size 533114 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/12-00-438.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:edbf8c8dcaf938ae42cbdee5900f5040af76c6d97fcf5bd0f124002320158ebe 3 | size 533131 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/13-00-474.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fbdae3898131305a2cd71308043df2d005745c7c1d8bf0668370692d5dd2af8 3 | size 520934 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/19-00-538.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36d14bd967115027f1f4243f8f91269818f44fb1bf46e46e5342f0f81257e047 3 | size 565292 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/20-00-540.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c73454bc109682fee9f9c97fbbbcdac7fcc86dbbaff0a7b8ad65c79bbed45c7 3 | size 403448 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/21-00-563.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b083c4aa50d5726c6e7f3d4a38bce50b680a3cdf7e1a61ad72318913bc2eba2d 3 | size 482023 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/22-00-585.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb37f925faf549ab59fd8c0bac8441bdee4e19c7edde162a712b4b7b7ba61f09 3 | size 518563 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/23-00-577.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b36b4c59444113553fb93df552b67a916db3fb22682bdc58e27c487c10dd94a 3 | size 473435 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/24-00-607.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e6b83c64735d642e6840eb889f7546e1d132090d8e9d0292d0236e6f10e2c0e 3 | size 554243 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/25-00-601.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bf94b7221ed28c18c413b5ca25704fb120aedea3880b418f4739838bd0ff12c 3 | size 616748 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/26-00-618.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3da636cf98bb0d31534b4e4d2708d11e1f4898518be3141161965ebf7d474e4 3 | size 750411 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/27-00-646.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f94f0c13160ba1feca6d22ee7f037d2f4eac870d5bde5815f2a50ac4409d924 3 | size 750257 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/28-00-653.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55f176c6ce1cca40f9bb3871ceee968e005979d9f7b0d810d13f5ad909f81acd 3 | size 738389 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_10/29-00-656.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b523a05d756858a09913994a997a70a1778446ac482970a57019d91b2d5fddaf 3 | size 529382 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a193c238c77101fb44b4e399b708e8aad8e588b462c15aa8c23c4994db3981a 3 | size 640390 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/02-00-354.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e1009287c0eab8787edb6b96ba86ed03ccc2fd2a9000ad0481ca8bfc398deaf 3 | size 600546 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/03-00-356.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef50fe1a2a10d2cce5bb7c12ad15a3e84fa8495063d1bfa42f0eebee75c4c364 3 | size 699149 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/04-00-368.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c471f861f94052451b79b1d99d470717871c52ec4d949dae02d77b1dd88c7cf4 3 | size 639925 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/05-00-388.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1701ce0b6b30e40833e2bc5053cb86209a3e20f933ad1946bb9773617f75bc36 3 | size 762025 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/06-00-393.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0e8b01af242bc86bf4bfbb422d32a487ff8c07aa3f5324a45c4f4224bff7fd1 3 | size 743237 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/07-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cce8029110ff4611c822d6a6b0fffb2c46334068dec53688c004822e5f15e4d 3 | size 688388 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/08-00-423.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81e3f97e601b92911e4bb61fff8335f8c1384f94e2659fdce8eadb732911c01b 3 | size 544926 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/09-00-429.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e612df90883eaa7038876ab7a94a069a2bb85ced733a9f00d4e6fe40d1e2d3d4 3 | size 567497 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/10-00-445.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e53520757ed5c99b87148e3632aa7ee786cea95db7723c25f00c9fae9191d0b7 3 | size 534507 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/11-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35ee7fbe8eca0b42bcc73c91fd67f9ba65092ecca56f49c26083b84ddb860238 3 | size 533276 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/16-00-520.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b62bdab47ae51b59895b6bc204ed72ebaed87052fbb4b90d7f983e82ca8a844e 3 | size 573652 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/20-00-568.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bb0f9ca3361f5a56f65e7d0233b1b63e86bd269bf728cda40133cc3738c935b 3 | size 595188 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/21-00-585.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c620d6827608b06991ef6cbd4ad98617f5d2edc08d7b31751f2898f671976f68 3 | size 510908 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/22-00-598.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:194514049a36fd534a140992230f69ca9e46e862d65bf27dc5f53642b8135754 3 | size 451997 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/23-00-605.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f30dde6a4736741cb9d36781171a5a25a42c42b93712a28f1fef6102f0878e0 3 | size 393192 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/24-00-623.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c588d1bded0ca1485257a0cbee2722d93a38777edb75c85d78575d735d8c176f 3 | size 507368 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/25-00-631.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be1967609c4b7edd47e636318175109e3f3db60b59e107ab2fed004dc3f8316f 3 | size 405417 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/26-00-642.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8915a633ed98874379ef3d5b8fb425ab43cb3675058d1e4146ed1ce9363e9da6 3 | size 608491 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/27-00-667.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2da03f61cea164de416c49e969d6868bfb74141abd7867c56648d89d87938f5d 3 | size 701465 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/28-00-666.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ea63d441a2c5379886c1cfcba442b25046e9b452dc469febca7b707fd506314 3 | size 704956 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/29-00-684.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9894daade66f6ed7943757ef86bdd076dc03df7e52f010f5893e235bd9f18e92 3 | size 702413 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_11/30-00-709.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df929b05743ec3458279f41288cf909c457605b29f0fa5b1baf4463619c72b78 3 | size 265949 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4afd092b1700fefe8ee30f865445ea7e5246160259a27cdfaf22039b6a51e343 3 | size 548158 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/01-00-273.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f28f31f8d9220827f1d6adbc1635cc2de8468e8881fdd08a96c444b1e6ee7a70 3 | size 537256 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/02-00-307.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c1d22520e6774544093f049adfc534b211445c067c0288e7946f1acaeefad4e5 3 | size 560309 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/03-00-314.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87eedf082eebe58c9691695afc84025b248dcc1ba9239a7afebc738dd86861b0 3 | size 471961 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/04-00-332.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1aa082eb8eef5d7e3f545a09fd98a7fcfd29f6217e6b7247f228b581f633b94d 3 | size 596052 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/05-00-338.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:418e8ad419791d51bb8fd102ad41ff1bb9371418ae2f16ea78e1fbbb8e040a29 3 | size 605920 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/06-00-365.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82ba1e97f798cdd51e906f923fd739b04dd3b4a16513e83d89c581bfe4233eaf 3 | size 537472 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/07-00-370.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b3f046cbbff9fefe0cee4b21b681fb6e37f9a8098c74a68a69dd1cd96d66a60 3 | size 403464 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/08-00-374.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:660022c0b028459e09df7cbff647ba5f2b86e4bd9e09d8f1b3bb493adb78f4f2 3 | size 467718 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/09-00-390.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:024563e3995137abbd140f3edb1662ed5930f618005ecec759db1bbd82ec29ef 3 | size 535280 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/10-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84ae3801942d191b268c9418249b736bf3f8093381fbf6e4428abf3f2f1809c4 3 | size 532437 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/11-00-411.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5efcb2c85aff1b16ac42f0176da7f96db0f0cc9c068d52780939492ed059a93a 3 | size 533346 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/12-00-428.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:062454ab45937ea5faac1ba921249ad0ca0d559ddf9e57f647378a4ad5d18586 3 | size 518207 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/13-00-458.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a66cac1b9dc027fa282a28e27762f33dba628c0f80fb3bd69d5c528f96e1348f 3 | size 515201 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/14-00-450.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1699929f739ce395abae79ce48faab426f3019f076cad83556e7fe38366e47c 3 | size 534550 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/15-00-460.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0303fcddd4e5d2a264fcf72ced2ecd25cd883b862c8a39bd20863f83457bbdcb 3 | size 525777 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/16-00-490.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f2cd2952bd141c8f3dbf65708f7924ce7f22eb85e707b0eec80f007472ecf11 3 | size 532241 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/17-00-468.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60a92e80716693e78903b88129da8d6a3fba6a3c47ed5720ef296e37962c7189 3 | size 539972 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/18-00-494.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32b0589e237ff8b04a0cc2e866bbe44f04ea88a699cb9d60fde0c37a5ac4f3fe 3 | size 527905 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/19-00-511.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee8e3e4cea1b405d1d3c9eb4613997012f5bee05cb44576ac29d3f154d72ded5 3 | size 534473 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/20-00-535.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d440eb8881e121b40b17e03a35d6bd99c27c0e1c02f5872a61d41007de709be 3 | size 491568 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/21-00-544.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3660c37770b09d3c8a37f632b2861f7c7fff29fcb92e4fc528b6be82b4cae4d 3 | size 498383 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/22-00-569.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c0725b622e0ab7f4c4f061d6e3d5a925fb11391730d0193672b325ed0a77c2b 3 | size 508115 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/23-00-566.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db6a0af97db92e5df25a3333bbab82f15e32ab4d4b049456af855e0a792e6cfc 3 | size 469013 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/24-00-587.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b31f9a3fe5f0d692853e072791c0988c751279d36ab74fabe968320eae9be36 3 | size 412540 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/25-00-593.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15b67aadb3ec4ad06b5e6979aa13fa1700c2b96fa5f4130579918941bb33f889 3 | size 526924 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/26-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82050923e4e1582486ef08bd658b65d6a8d23f76359cfecf963c64a2377d9265 3 | size 537312 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/27-00-621.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70f40e28247079e44ea927ed28b30c7cc2cdc9e8cf6323c730aaeb0733b771ca 3 | size 565814 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/28-00-636.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20baa0ccf4eb281e6e3e785b7ac868aad5acde18e13f03b0a687f8dd4ae3633e 3 | size 533013 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_12/29-00-647.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65ba6f45ecf4ebc5682cabb06ba5c339e6554aa0af187725c521efd02d5e24b4 3 | size 344059 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d5e16618778142fefe735b70d5e7a5344a699a37de28cb3c9f8c372fb2c9383 3 | size 546909 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/01-00-280.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a471117061b55d4cb5b0ba1632a284fa17d1a53cbcc5e5ac9684d0c43ef08e88 3 | size 536816 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/02-00-311.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b5756ff434ddc20aa59abadb80fe6eae2d98e1a28f2c7cef0bf654473850fe0 3 | size 571234 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/03-00-324.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a26047abb9f17cdc6ba36352e7677e62bdfe7b022b16281a897c192fe6ec2b5 3 | size 701480 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/04-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6591a9aa59571f1f046e77aec029d41ac24717dab193b5ff44e0ee5230495b70 3 | size 649512 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/05-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:153262ac5b5afa951066a25d473dd849c47d31d3443650206ff2ff920bb8a32c 3 | size 623676 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/06-00-371.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9feb31cdaec56f3f4aa7ff76991310cf2191ed77ea1630029ff3abaf867d4156 3 | size 541930 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/11-00-424.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b9a6c62255f518d9d3d7281763dabfb807689dabab65d34f060026e3e64d3ce 3 | size 534776 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/12-00-440.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a818b4614d000ba9f50c76f303a5fd873c69fc63042b6c247ade167d355eae1 3 | size 598142 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/13-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b41a93ec57bfe4d0cdd8162bbed90cd1e2046c277630150d7f4ff1e96822911 3 | size 574328 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/14-00-465.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca3f6fb3f2b9cc3dcd008b7192d353164d944e5fdaa21e856657d5239d8d53d8 3 | size 588743 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/15-00-477.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4be18e82c31b0b81d7e99f899e911e8823ccab725f9e24601d808c93a999c816 3 | size 545178 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/16-00-507.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bf0cfb6f3a73d87677588bf6525e96fe71ae46593720c1352fb1b7896fcb0fa 3 | size 549744 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/17-00-495.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0b6b7fc8569ac0479fd5abeb856c00efbbe222ceb16c2f13abe2aded08897f6 3 | size 560551 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/18-00-503.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c011ee2cd46f604e9991402ff9a6cfc541a309679f2ef981c57a3c9542535c9 3 | size 558585 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/19-00-525.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58e5c736bbd273bb0f46aad2c80e940d6ab6b4e7c7e8da3a3a7fa98fe89f47a6 3 | size 539421 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/20-00-548.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd3c02c06ecd7e8b8752901965ae9a76e84c78f7bd84f9d99d5936f77b9a79b3 3 | size 465525 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/21-00-556.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1851753fa7feee63e0f49c33cde9039f3334e5597556474b1f763db6ab355fc7 3 | size 518538 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/22-00-566.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a4dc3521616f2b819d015902e3dff975a7237fcb4d4c61f911a400547262a7b 3 | size 471087 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/23-00-586.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d796afeb995eb4d9b7dc4b16b3f4c8e27fd9396da7f2bd5fb285d80ced21ecae 3 | size 521870 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/24-00-597.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d204b5b9b3e7e7b685333e551e4e9284545d0f2767cddb1069a6eec49a84e26a 3 | size 666507 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/25-00-605.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be3c3adcd7d19361725e6befeb302f27d5ab1c93a0b624e82b1b397a95beea86 3 | size 538087 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/26-00-616.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adef942c11a0d22f95f719c3cec66e783eeb45dbd360b1e21d6660815d000489 3 | size 768158 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/27-00-633.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14fbf242e94179e42f85303aa96dfe4b8d857a7cf39982cb822c653b2e0ac831 3 | size 670200 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/28-00-641.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73dfaef1d250f21f402fbd1d1dbe8ac0789176b2ffe4558ac3addf263ab5e74e 3 | size 539479 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_2/29-00-665.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1e87fdefd770ee39ba77cd351eabfa201194bab8b4b941e9a0ea712997ae203 3 | size 382007 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_3/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2633b9fab576eca8f004f829ff09ac288a1081d8f3f4ab0130ae7cb7c93d802d 3 | size 532741 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_3/01-00-292.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42925251e6dcb24fcd3602f42234e34b54135e832fbb3c7591b9b3f8dae72b15 3 | size 533297 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_3/02-00-318.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49ded8122d35ea63f2d16ddb0c3a44f8cdefedeaa13d98ff5bf9a9aabe18759a 3 | size 533205 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_3/03-00-330.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:231f7c5f89558a2b482e9541609e18f254842c220e1504f2bbd54aac1ebd59d0 3 | size 543230 4 | -------------------------------------------------------------------------------- /Main/Face_Bounding_Boxes/Session_3/04-00-342.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d53c60593a2a61641f2d3d3c69b1c1c244e78e0cc7a25da0306b8ff35bff09e 3 | size 546342 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_1.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_10.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_11.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_12.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_2.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_3.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_4.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_5.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_6.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_7.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_8.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Metadata/Session_9.txt: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29847146a7c8982d4bb3ce69b7746a462973625abe1180e31184e91ea757ace7 3 | size 412 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7551d22f89517b993036899cfec08e9b7d068ff7ce236bd30fa70306dc98810 3 | size 116826 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecbecfe4e7cf5ea7803797c85904e88f4f5a008929b38c957b962c269b2f6da7 3 | size 128490 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_1/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d908f63a8a0b57d50970549d7083b18ba5d0f1d7ea8e32b669d084e12e08cd22 3 | size 125170 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecd29e2337745e66f3a1efaf2304994617cb9440295660969336fa5822338f7e 3 | size 114780 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_10/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d474551f4854775f1fbc0b63bce7f110dfa2245a9ac67c552fed505e29a014b 3 | size 121870 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32622b3b43b66a70b49d16fb551bf7eb546d70513c8c450b839bf16223b7b0bd 3 | size 115808 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_11/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19b284b680d334b9bb0d2eb5091fac4ba22f0fc5c1aa7426b357be5746278fcd 3 | size 114181 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55bee4e4f9e4e6a359cf2f5f9a31a45dbb6a9a805e801d60d3b02bf3e6720506 3 | size 123286 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:75324ba8d0158e6d39efbdb176872c3c391ea076052e46ab140bf08f4f844265 3 | size 158049 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_12/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e8cbf3c627e5f49e4d6e45661c9823b085b6174f2cff351373617e6416bd0c4 3 | size 127320 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d71407943202138f62ac08cd50db739b0089750c579954cc4a7a20e7e3306f9b 3 | size 132191 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_2/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03a4612f020cf6fe9a3cc6b34fd8757d9233afb95ddcaac094bb60e9ba5a260c 3 | size 139603 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08bf4f47f4c586efb8b005aa41bc9f902c46ae1fe954dce0abbce70bbaf94e5f 3 | size 130620 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:022814afb35ee3a73bd9161f37cbf818833bbc97ac6f1e617dc5c61debb63f4f 3 | size 139346 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_3/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f72c03cade17510a6ee9e0ad781498657331204780080912093f983ee2551d8 3 | size 121988 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1a798151cded354084beabfe45326fbb583face0524b840a5402e0f6e53f5d7 3 | size 122390 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5c5b2039a6ed8210adb235a29595945854317d365a9c725af2298cd4574ecd2 3 | size 138712 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_4/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:529944d19d3083289bad7fc7b27602d087c0e312ccd3de6ac253d95a33919114 3 | size 154800 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c230830abacd7ab001743accbf003b037cd4e17e55023149c6d49fecc29f749 3 | size 119745 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1201a0e8323a9b84bfa1f9d41c6d16470993d353cf63ac20db1107fb3fd57223 3 | size 119819 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_5/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7fd64101dd8636bec81f8d82a344252af3a0b4681e730fd65dc18afdbc39ac4 3 | size 112097 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eae507cf2a5a438031d33dcefc914cfeda61de65ef4c1cbfab7b22d2b9636a65 3 | size 137948 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_6/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33cee0bb278172ed2a6409627e7e7b591cb1867dff636a856df19e47e02394cb 3 | size 115709 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a157a12d9c32d135838056668ff202b817bf8283ad9b819116ab711aa6b35cdb 3 | size 118715 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_7/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b5db237daf1707ba9b10a61b7a4029eccc595669536f04d19f2b47bf0e80775 3 | size 112499 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da2ea7d38899283ef3a9795532b3a4b414790a9e1b68aad3966a3b36471d1496 3 | size 119096 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_8/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ab20b90e61beebcbe767a875e9803baff76e1e9f77d6a4641e9091ab2fb2a69 3 | size 113636 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6b7030fa5b685d0e89b3ab968b1560180367af7c9e00aa2ff68a23c50855db 3 | size 14746 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf0d0ab7b9fb82cdb5bb73d577de912007ae815e090586d796c1ea76c227ed57 3 | size 111779 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/5.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/6.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff90417a2f10f077c4ae9b7c9d980887ec502adc046d95aaafef4f52f15195e5 3 | size 116960 4 | -------------------------------------------------------------------------------- /Main/Participant_Photos/Session_9/7.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df370d76b87efda4072c341beaed2a4ebe776976d165c05e6aba740146ae16fe 3 | size 9907 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61d3f368081a9af0aa6f4fc81c2b5538ef46fe90aef8c54418a47a327c065223 3 | size 1438511 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/01-00-288.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d45a033c50492d7d274bcc587a29b4777a67aa006356cd3014ae573d818b98cc 3 | size 1438776 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/02-00-310.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29d6747cc44eba59d3cd038c4c6df81b2c7ba264701ccffd2ec6356664b09cf0 3 | size 1438386 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/03-00-321.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e30ab4f14c06d1ac6965488568a7be1f8d688b203d05989052ebd1cb8b2c25d7 3 | size 1438609 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/04-00-345.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd2e409c9315d58b1ba59cc6f865aae1e7073070237216ab6bb34fd5e491107e 3 | size 1438866 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/05-00-347.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fdc1a47ffcebea01bd5529d8f549d01ac2d3046b6ce460873fd1d69a6628836 3 | size 1438181 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/06-00-361.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a22aa438a5f4c1339024ff1c5ce1a516ebf465b36d8205f68ceb4142be5d8f77 3 | size 1439305 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/07-00-379.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c1269b0e85251b5ea7381061ce7e344fcfd45eb3806d16c6b66352b68a2f675 3 | size 1439804 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/08-00-383.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d0e9c20f0de8e48bd658532c2df019d6ee686ab7b8459238a40a8e586eb0061 3 | size 1436731 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/09-00-406.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8e79e3571d338189b15a268ef00b875684b740a9a6bf22410a73f5c1a71db6e 3 | size 1436260 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/10-00-416.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:667699f01b9c6798138f82184215f20ffadbe5c5ea9f256044e99eab067532d1 3 | size 1435445 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/11-00-439.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8027f9e51c57ce5d2d676bcdbb5bd6d24bb0ab1434ae7aa76cc1a5dfb92da855 3 | size 1435067 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/12-00-434.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d79ab848f6ea8a262da6c806cf42489a802c5775571a4c7dae86e9a021b4de65 3 | size 1436166 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/19-00-530.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:070f3c90c942be2395b2a214f24037e2c9e9ecf8442c4de9f9601f55564a3083 3 | size 1435377 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/20-00-543.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad719f8f4c8e153441a92bff6e66ae94273abae218d8270ac8444ff0e4ea4e5a 3 | size 1435094 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/21-00-553.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f44dcc05dbd666924851d17068a7209743a30f6550158e4d58ad78c37a059622 3 | size 1435868 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/22-00-560.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ba701633276e4bd00c17afaf30b492c8fbbcddde038b0aba93f56a7979b1f29 3 | size 1437171 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/23-00-599.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c16ce1f73e6240e25d8dc5187830405689b119c3ff3084e9e03e7042c139dee5 3 | size 1436407 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/24-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ed769588c62f91658ba3075c8cc1edc6a5ed148b55db06d8e6af67580f0413c 3 | size 1436281 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/25-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79372ad7aa300a2d597da0fe16b5b92b67adf6a7a4431bbafaf0e4e9539c19aa 3 | size 1436334 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/26-00-613.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b34f6f27865615e21b8fac3265096a572d01029e5048ba6af2667afea3a266f2 3 | size 1435481 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/27-00-643.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c71cd57937108051bb8e97652040f6c7612aac59292da98659dcf8b7b576a6fb 3 | size 1436062 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/28-00-634.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de85dbd55d1691ac623502ce5e05f0da7116e537e0983e75574a8b337d138992 3 | size 1434663 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_1/29-00-647.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fb47d146d94264f78f1a79c15dd615726e5fd2e5df280245188dac661229fa0 3 | size 200827 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f0a4bc441a3e1d4136cb6e2fb38342f74801d8dda51e673a2c8cd64109a4419 3 | size 1438275 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/01-00-304.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6f1cd737ab746572a77c6909d2ef4ef76fdebe96a4c26d906c56b4aa00f4c94 3 | size 1438113 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/03-00-332.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35c4c04bce31850a7fa5e0c6557a2264148640f9300141557838671c4d555f4d 3 | size 1438994 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/04-00-350.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0a426062c75c9da96946c6079bf4b9a016ee891805e20cc11ac1df4c0a7b1bb 3 | size 1438019 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/05-00-357.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d22afc098936113ec1b9587e9e8e1656746abe2818e65113763e0fe1dbd9f7e0 3 | size 1436818 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/06-00-364.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84a2bc68692186cec15e8dd94c1dd192010b65db74dc6edbb3528b0274a745ee 3 | size 1436074 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/07-00-389.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9deb2eab558f9fec972c96bdb8bb47ad149ef308d6cf0e649b2dde34fa19df72 3 | size 1437676 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/08-00-390.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d680633b4d517135a6597976cd52d6fe31b2cdcb75559dfa1a122f12b06c8939 3 | size 1437429 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/09-00-403.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07e880ddbb1e43b0268ffcad3abbd08126136005e9275b98dddcbee8170e864c 3 | size 1436743 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/10-00-423.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f461406d4b2bce7f14b822fcc5670bcfb2f80cf70268ef08c0c8a75fbd9a293 3 | size 1437406 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/11-00-446.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d70b599e2d4b571c77108e3d21a91863882a67b43957821b05d0d98d91fc91ec 3 | size 1437435 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/12-00-438.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ef3cbca8246020bb1816521ba7b0e033873f5b171ea4e7c58418aa77109ffae 3 | size 1437810 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/13-00-474.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ac509d65e717b8ea1ed54f99a819b9a83485e2985e20889f8866f756976610a 3 | size 1437356 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/19-00-538.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40eb4117bf80d1887e5cafedbd299684056a8fd197cb010ca2c05941a3eee5f5 3 | size 1438157 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/20-00-540.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8c18e7b31649a22748f66acf9c610c95ebf96cf0b2aacfa7163c610d82b419a 3 | size 1438279 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/21-00-563.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afb2491dbaddbbb5e67cc4a73a8e6e3a2adec1e11789349dbbf450127bcc99a8 3 | size 1437798 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/22-00-585.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:461c734718ac52b3d1c31b8f63123fbad53c47a3dd269165e878732b201357e6 3 | size 1437616 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/23-00-577.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caa8aa3a8456fbf9dba14b9d4269aeb733a11ced4b6d5bf6cd5f7feb2919930f 3 | size 1438020 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/24-00-607.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d1867e5d8235bed5e2e62528e760b925f854db6a1abbda8ba81155d0fd85fee 3 | size 1437469 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/25-00-601.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa3c23ffef2e86da892d141aa3b309e0b6c9e1dd1e70c90ea4f2fe3ad4714da4 3 | size 1438166 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/26-00-618.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:084a02ec066223811d151d16ceec92c08d2828bfa4dd492c20a382e2349c8231 3 | size 1437994 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/27-00-646.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a3fc426ba4b9870489cda56095b350430b8016d90c2a37ca12b4b058469b6b2 3 | size 1437499 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/28-00-653.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d88b207633a932836c97e3b2970bcbc624a71dbb0dcef6d634f01891d3674a3e 3 | size 1437259 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_10/29-00-656.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ded8a007576d19f5c70b14125a7e3d45a83686c4457ece002472d84a3533f341 3 | size 1437085 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88cb3b1a6c049c70ac47c92834591fed5890eaefd7967231a4971caa95bd986e 3 | size 1887295 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/02-00-354.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc3d10c174674021910358dfe03c59a52f824fba9a587077b7588888818c4972 3 | size 1885352 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/03-00-356.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e467d66f8f7a38635e4c71b7a8c224b955d6bbc69cc979214be9688c0344d754 3 | size 1884850 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/04-00-368.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3aba0af3a64fdee99ef91f9bd23d34e8c350b5fa328d5d90830dd232e76a2177 3 | size 1886260 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/05-00-388.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5e6f08d1a27431ec43777bab89d014761c9cd46a8c72846fd6b8e7aa27d1fdc 3 | size 1885544 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/06-00-393.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2caaa444d1b3bc795633dc7ffa3252d32bfa765aa6dbc103c806519c756bc273 3 | size 1885410 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/07-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4eb7ae798a167631c263492131788186abf8422c994809f235ecf3749014cafd 3 | size 1886926 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/08-00-423.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:247edf20e92f4f9e45879b558dd4da63a31e14be5831141487d12f36272c05d1 3 | size 1888337 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/09-00-429.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06303d01062e59921254662e1a114ef4812df770fc3c1b5a64c5eaafab43cea1 3 | size 1887220 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/10-00-445.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d434d2a2671add5d0ca855d86acf7bd0ac19e5bf4e718b6c432189f2001dc4f7 3 | size 1887727 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/11-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ab52cf3ea6089b939f0b81a18cf8a2efe9f31ff6989ca13f71fb734219dae0a 3 | size 1887851 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/16-00-520.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5f99e5dda31d537b1287794cc9240cad1a464279c5996c48770d9e975007586 3 | size 1887748 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/20-00-568.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff28ad6ffa8954a845e9349f6a9b19777f7c8ba6c48427806e17a638135ec7af 3 | size 1887710 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/21-00-585.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec64c0250a652781454f38f5bca1a3e90e179fcd3e93655701e77389eedaf75a 3 | size 1887647 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/22-00-598.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ec59e3f5cbd9ee6ee66549f455e28bac6e98f80592b0e4857ec77f7daf24542 3 | size 1887210 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/23-00-605.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d92f126689b92a57f79b869194b737f394b1b4b6770b13e3cab2179808d850a 3 | size 1886943 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/24-00-623.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bedcbe7ae9e4e4faf215ee2413881dd6942b5526c9f1f21941d573fd98dde573 3 | size 1886667 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/25-00-631.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3efc220bf4bcae3d492b90db658192ac20461cc1f0d27d3b76a8459dd55d0f2e 3 | size 1886848 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/26-00-642.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6dab8a621e930a8807a394c792c2b7359868ee8d01dfae8ec38da09eb355deea 3 | size 1887784 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/27-00-667.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63ff7c05c436de059a9fac209768ba914503a29a149f8d29dd6e70ea4ca05900 3 | size 1888124 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/28-00-666.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa703860498855dd3e7a45011440c6cb8398508ce3e93e065122ce2eb36983ed 3 | size 1887411 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/29-00-684.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1f21d236af1e73786e0fd3f2efc7d2e110a482f61fea8ac79fbb1cdcc5e96fa 3 | size 1886228 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_11/30-00-709.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d42ddf5209b8c54726fcdd7bfe85bb3dd85c51c26c187198176c6dc3cee8be31 3 | size 1492026 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8b29a6447f6807a688a0b4963d429e2dc34da704f6f8f1c41e8f1a0af8fb88f 3 | size 1435132 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/01-00-273.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5f84614bf3c5881ae48048f66826dffde102e785ec724903be814800a9c9184 3 | size 1436741 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/02-00-307.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d8c13f29d4eed01bdb7d4094ba01e4bc243bbbde4e30fa95ee7394f980a0e3e 3 | size 1436588 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/03-00-314.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa879a103906de7e873588b24a18c8f6c120c68e8a0f540f18c3a468803dc1ad 3 | size 1436306 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/04-00-332.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd900c1bc45a802340e2894b45c974e5b5609e7d593562c96c6462eae3e4ae31 3 | size 1436660 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/05-00-338.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4dd45bf16ef9e5c02da0dd1a0f4c5cc61d7ce424b760e8e0642cc972b102ba94 3 | size 1434979 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/06-00-365.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9b312c70e25400aea09918558a74cb3b265faef6b88d56b7c4fd83d1e111787 3 | size 1436602 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/07-00-370.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89bbb25c85bc0d3a33ae3feff0d3b4c924ae9d07fd0a3e7795f24f64e76e9c42 3 | size 1434751 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/08-00-374.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6f5dfc3baa972951af2f5bc8eac1e0d43f11022c34fe5e373c566b28852b0d49 3 | size 1435173 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/09-00-390.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ce858c9cab9b808ff6aab5a61fe3477ba90b0e0b97b5130888c81aa8133e60a9 3 | size 1434252 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/10-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8da33b7b34bf9946fbd6bf797571489d6d9cb6a20d2c1379f763fa023aa5659e 3 | size 1435403 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/11-00-411.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97b4a880cdd881da83b3402e8a1723e6b067ff546141c64d411a7432075ada9e 3 | size 1435194 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/12-00-428.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7834753eefdcb6f5ce7ab2b9acf54da367bb44d8aaa5fc108510e0442fad7ba8 3 | size 1435361 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/13-00-458.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c615a4b050d3739f788412c30546b52c74445d46c9233a90c912657f7840ad 3 | size 1436037 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/14-00-450.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:853776a08edb0515d510ea2f780dd3efd4aa9faf740ab07c034bd6f5c475cec7 3 | size 1435889 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/15-00-460.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e446fe666dd3452fcc3999beda0f07c1c6dba1bf8c829db7aa7e0cbf291c514d 3 | size 1435966 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/16-00-490.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e610dc204c40550f46b3da70bc619f30716b1b01147e7db654ed36a2a1f0c77e 3 | size 1435946 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/17-00-468.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fe39a82d11ad92ed34ee392dc444ef1224fe2739c58871a83ce38e8f0af6b16f 3 | size 1436057 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/18-00-494.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb65997604d3f2deb82c63ca14d1bcfb6b0f563d405c374888b552c3e69459a9 3 | size 1435039 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/19-00-511.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bc77b278ada49e6f7be4d4944704933ba49f7c9c5df76add52e03a1bd478455 3 | size 1435362 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/20-00-535.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:270ef1e180ba33c2b95a7e2b1d35a27d6d217dd5b90833778b8d93ba6a85115b 3 | size 1434695 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/21-00-544.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31934d411dbe77e9e369834f103c97690f487afd5f33e052fbbd13dc1c0a9b17 3 | size 1435826 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/22-00-569.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d0786a7cea5497ddaacf3b533dc7453e3af932e0c177d6d66bfc88a95a5945b 3 | size 1434287 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/23-00-566.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b2d80e3f8f2eb7dd16ad4902d2ad655e0b952317e0d1e8e467b93d8da7f17b4 3 | size 1436051 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/24-00-587.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62f8723e4e2686a2ae274a2751f9da62464a44193317b5f58e4121aefc06467d 3 | size 1435289 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/25-00-593.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eee67974662c9d1bf783be03ef7f43f6cf57b50a1a9ace8cc70c4d72ec55dcb 3 | size 1436706 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/26-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e2140e00bc3c947488c66f4784a041a6c047c10f06ebdfc9ce199c0c5035b28 3 | size 1436706 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/27-00-621.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32f065e7be21ee893c35227e27df8f6e29e3fe7a3b40b5068f710dbbd81c4ed5 3 | size 1434079 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/28-00-636.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6b9c5bdabb182b767038fb3b094454c805b42265a2ea85971c76834ff8bea89 3 | size 1434475 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_12/29-00-647.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c417bc460b6257928bdcb564f9eb9f4286788b590b45b98604ffbf2c10ebb137 3 | size 929775 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd6fdfb25d19e2ad7b8c52db3554c7432e87c29810419331e96e0e497b0c21a3 3 | size 1884766 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/01-00-280.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbc8c446b1fa1df1766d4927df615da32ced86ebc5a9d7d13a152b25bd8ed498 3 | size 1885732 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/02-00-311.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2483634db15cccc18df049e38acacbcc485ca62d8155ff0217f158fdfebb73a 3 | size 1886704 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/03-00-324.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b53e19d03b5961dbc1b526e5660f8d9f4adcf1537a76739956b80175c117dad 3 | size 1886026 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/04-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f79f5fafc341ee6c7f95eeb2ffb6ceb8cdd1e599705d011965345cd96010423 3 | size 1885642 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/05-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e423188c48fd33eb384d9332d848669d23e3754fad5b254e8fc84936c0d9b729 3 | size 1888262 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/06-00-371.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1179da8b8543639cd93c72b315c054d39698515d426939e82688d737c81923d0 3 | size 1887445 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/11-00-424.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8afa8b6b2f0224bedf4de13553b7061461ab5c1992f184188ff4c173bede69cb 3 | size 1885727 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/12-00-440.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0488f5c1e77a23c204789ef5da3ca5a238762ac4d01020e7b4d5795abcc0a667 3 | size 1886498 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/13-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d87f87dcb53daa8d7cd1c7646794f12b66b3098cd82483cc3b4de8b0c170f32 3 | size 1888349 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/14-00-465.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2509d6123604153382fe5a514a11bdc46f715f0b365c608b7bb985a43926767 3 | size 1889027 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/15-00-477.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:360c89ba1911f8b33e31963d2f8d3b987eded3c6542f7ccafbb00312f8b58967 3 | size 1887132 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/16-00-507.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b7c644dba1b2c987d100c127602aecbe7e1746b60f93974ae41aba53f0c8bc0 3 | size 1887781 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/17-00-495.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b52f8f83a7ff7eb25a9d285491a83e344b8810bee17c97f3c6971f29bf9335ea 3 | size 1886213 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/18-00-503.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c78a40d7e5c895bab5bf15b1ef909edc730a045e66e58086d4f4c3db032663b 3 | size 1886401 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/19-00-525.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e51f9167497b555191ce13355619ad69917908c0998552e53bbea30d75268e3f 3 | size 1886691 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/20-00-548.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28aae12448376c81fb27f0da4a4c88b9794accdf42272da0b546231eb73cc7f6 3 | size 1887398 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/21-00-556.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5001b304554638fa19c6faf8b729aa3deeaa65eedc6620052f5034b2f9bf5374 3 | size 1886333 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/22-00-566.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7333b13a551ffa777e6d295215479124b5f757dab3b39b167af9e0fb09b38b2f 3 | size 1887517 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/23-00-586.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b20023c9d8331a509b8f8da11cde686c7b43c4ef7a1bacf4ce981371a82fdcf 3 | size 1886540 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/24-00-597.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b57b66a3ce68e15fc07bd5ff57e67b426f4b81b811a21eec21469359b62772c 3 | size 1888140 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/25-00-605.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eabc5b1f5e21ad784203f87217e55029aae78cf719f517cf4ec00fc18e3f1d2c 3 | size 1888118 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/26-00-616.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36a9f47c185e5f6014dbfe45f9e17595db181b144de18a4a99f46b332be9f2d0 3 | size 1886580 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/27-00-633.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d62a93bc47c666a9598bbe5a758ab4fee53ffb174ed20d51d8b900900a5ecbe7 3 | size 1885920 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/28-00-641.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a6307c666005595c16f022321a34e017d9ceea7e9b4fa68c0b99080248a9546 3 | size 1883635 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_2/29-00-665.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf408617f10d6d0c15feb262f6bf307b1e309fc3cd3771613b7556b52da9b0ea 3 | size 1297588 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a41df7e02f6b9b018659e17b919c5c1abf35090eab72785389eff801bf0e13f 3 | size 1438846 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/01-00-292.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4460bbbb2d8d5e0e9b0315e3a0fbc7fbc5ede1f697b22a8999d242e43598822b 3 | size 1438387 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/02-00-318.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:345f004463e2d846ce8f87d2b43fdb41e2231ab12971282576d6b8cb9fd277ff 3 | size 1438325 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/03-00-330.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:00cc37f559a2799d16c5fa85435b6b171fcc70e7f01b79d224598659c3120bbb 3 | size 1439419 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/04-00-342.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a7609933cacdcc58cd445fea6c3e64afac6663077369f9852f11e0fa901405d 3 | size 1437960 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/05-00-352.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c188b06ea5d95f27ac897d42a582110835f3b62b85999bc156b9c9d02d3b14b 3 | size 1438944 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/06-00-368.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a40441512fba341855d7378be50b6758a009198de888be80bd2f383106861f40 3 | size 1436781 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/07-00-378.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62381931579a910fdaf887aa183020290413faed4763c1a4e30c08d64324bde7 3 | size 1436889 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/08-00-387.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d74d375fb4d7532bfb2e5f666128f7f11397886a2ef05d5cf2dff2c2cd767b7 3 | size 1437931 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/09-00-404.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4eb1857e27b6fc91118c44abd098dd5e1aedf4ad5dd15d76fe48ce93948dfb5b 3 | size 1438589 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/10-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9526b3caf67c2a99e75139e4edcd02bd6b1e56a9d15b562a88e13a265c1babe 3 | size 1438019 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/11-00-420.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:991e0d445634aa5e8cf44863a0daaccee87c5745a382e7285d9dec05094a79d5 3 | size 1438339 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/12-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7145b0d4b7ee21b4cbe923138bf359e4040141e767b2da2347ad78f10f91940 3 | size 1437851 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/13-00-471.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d9bb64ef115b9d2e542f1a760514d1671e1e9c43b8f9eac062b1ab84de3c7bc 3 | size 1438335 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/14-00-458.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:350c79809fa11334842a9ae09bd5d69ae26d520d2ee11e3828860f8284f8208d 3 | size 1438308 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/15-00-472.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3207b345c34f11002a10c3c5f3e8706a4364a3ed08cfe5b53cbfd4ca94debe72 3 | size 1437390 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/16-00-498.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4c665db660b888df362408f48bfaca97cd2b126815dd121b5978e3b1d0bc5ba 3 | size 1437523 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/17-00-492.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64a8d6c566fe42e32e622d5096ded998bddb74c843100caf21752b7ccc3cfddb 3 | size 1437611 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/18-00-509.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ecac224bc8b7da6c0c834508d9ba63b50fe0810d9784a9ee34f6b5abc084d42 3 | size 1438142 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/19-00-533.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b829b49d2dff4f27c6d036ee00e490cb1b7a81bac22c907a01a0277c8631bca6 3 | size 1438177 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/20-00-552.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6978f9d1cbc937bebe01710ee2f650ad00521dda7cc6551b0f794c9e0d82e00 3 | size 1438147 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/21-00-561.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b48a7881f4dd3b7691c3e557b748de7936d0f52de0dd5c53a73506fe858822f0 3 | size 1438059 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/22-00-564.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b64943390028f4dd7cda2f0a3ec7f350c7894c96553b4715171a4bb0343bfbb 3 | size 1438034 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/23-00-586.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24e6a4d0ac5cce6bacf8e89669b59e605405610cd942d7e999bf730a1b26205e 3 | size 1438176 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/24-00-607.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1b86ac397290ad1bccc1ac3640b69212e80c3322806742b35a941ad56fbd969 3 | size 1436987 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/25-00-599.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:956ea7929049e23a27a6608ecdb58d361cd20a80000996f203bd3cd5d1666b90 3 | size 1437549 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/26-00-611.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9868afd145fbf6fd92663ef29f570b5b89a8a34e9f5deeeebd72ce77c3ffd01b 3 | size 1438155 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_3/27-00-641.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ace4a090f29f5e8909add8c93ebebe2a1a5d65523c6bc2d704cf23f867c90a1 3 | size 1437031 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f5a69f0e94007ccd7f5a29a8ef3c6b7b9e26d58548dce5c98e93c7535915c9d 3 | size 2333959 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/01-00-293.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c59caa1a786783f8eb1619b0bdca72e375ac66ef3f5e10d1db0775b9c054b0a 3 | size 2332928 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/02-00-322.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73b3d76aa20c715dd7197683e121ceb85a2724da7dfdd0298f4f5be6d22965d8 3 | size 2331027 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/03-00-332.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fde4d673ed45f720dccd1cfb876fceb952e462d3ba91fb0dc7c8724f6ba69f1 3 | size 2332272 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/04-00-349.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03d9566c99102b10c92d3a14fa188b0d3ec8b35241b779848f97dcbce125cfa6 3 | size 2332478 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/05-00-353.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dae0a4d1a1d2653297d254ff708ab074a92caa615466e3e2a8bf4973e64ed7f4 3 | size 2332010 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/06-00-363.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5376ee7efec6e3a8b8fa48c9f9140c98624736dc256014e6259870f1fc8606d0 3 | size 2332986 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/07-00-382.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d36a08b837cebc8ab619ea9bef600cc707854d7912de56f7464238482433fdff 3 | size 2332565 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/08-00-381.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b3f4088ff24b0c94fa6e917f7410ec7e03075c987c57781be6982be06595c7a 3 | size 2332035 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/09-00-400.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42ab84972d2f0ce7e38728f92a90e2c2c38d19d970c15959c17131e5f1a79217 3 | size 2332525 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/10-00-415.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83a98df5da29d17dd7ee280d292aeda923f521f1b0b86c7d32740b9a32fce0b1 3 | size 2331637 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/11-00-428.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6055de3546272833c8d24cbf8c86b65bc496c33676b9df6078683f6c365fc95 3 | size 2332146 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/15-00-480.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:998d539f2738ad62eb101b7ff4a5d8a4358d9b32c2430aab0364c04c2be946e8 3 | size 2332895 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/16-00-501.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5beb7b344ff40c0c6bed42606b771ae34e2996dd86ba00e2d0d3ef0ea289d91d 3 | size 2330855 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/17-00-478.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef25bea7ea44a5ef9c083cc7f55b2d617cd1b75710c8c13a8f91f5e28236e0a2 3 | size 2331534 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/18-00-512.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:198a30491ba80de5a36da4a8cc25774a834e18e5114debd77381691b27229006 3 | size 2332092 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/19-00-532.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d6ea33813eb493ff99d8e0ad3333f7674008b5034a9bc3d729cc9075ff88faad 3 | size 2334881 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/20-00-540.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b6794474c78a812e45c8f1f16d017eb7ccb7d6423e17eca90f51240cb501d09 3 | size 2335301 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/21-00-559.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f2e731001e888d4cc629f8495e3cfc4f9f935047c8ab5e35ece690e22046c75 3 | size 2334939 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/22-00-570.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1ffea1b4b1e325e434ed1ae17d90f377719fc532d3f6c8c82a8fe1e1353392d 3 | size 2331148 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/23-00-578.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:68c7b81451a337eb2a8fbf7ec8db949fe2e6c8871c672c7a0c66c39e1c387fce 3 | size 2331883 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/24-00-594.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24cfc87f3efa0c8acfebdf16f2644cc572a3334a7d6bcef933c85875cf009a84 3 | size 2332034 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/25-00-599.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2bdae162052ef660d2982909e25a5f43e355451cb17a1ed35c1e5fdbf7f500a0 3 | size 2334654 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/26-00-615.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4566b7fbca7edcfed63e8b10ea665a1242c64726eb624d475f3157ea88ecd40 3 | size 2334227 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/27-00-632.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cf31d42a8c1ae483a067c621b89ace6dbbdf9b368cebee3a15b7bccac8113f4 3 | size 2336278 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/28-00-637.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e378865bfc11b9821ec3d023bd8f915cc3b49beef1fbe2899bf052557cafe1f 3 | size 2335519 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/29-00-654.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e38e3e01cef6474582f8d093717083f9dbbf82e47ee1a88f9e26a0187d3267c 3 | size 2334789 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/30-00-679.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24ba7bc8d5c25e25586a013333f66a9e12415d969a0b92c2bcac06d984d93938 3 | size 2333862 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_4/31-00-672.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9c85fb30a4150e7a36336d85833bff378465c9812104ecb35e5aa388406bb00 3 | size 2006748 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cc102d5fd92bd7c26149658d253b6aecf130854bb9f9d0dff5f268e0ee1f27c 3 | size 1437798 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/01-00-296.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b081c51a639abbd2f7f49bbe359f249fd3f900d9cc4ed636871890a3af2c66b6 3 | size 1437539 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/02-00-325.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1cc1144d8fe8bd9ebef2a4eec2c429b3057688aee8aaca46ce9929aa0559fd1b 3 | size 1438091 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/04-00-354.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c2626b6ce1825f24351c35c575ab8b3b267107352bee7ce3675eca7abc4330b 3 | size 1439228 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/05-00-353.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42024e49248acdb29ea0eb736e15242aa596a6fd01299d4dac3fbd801a059685 3 | size 1437764 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/06-00-368.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eca7ad1497b359f0bef702074245db5dac5bd66efb81042bcae9960ee6c44ac2 3 | size 1438309 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/07-00-386.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8c9ca8f7750c9c60ee90b1753945b78f989f33201dcc9f27e5ed049f5a548e6 3 | size 1437951 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/08-00-399.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7630b2a8c5f5b19cc2475ea2b0b194dd21ef3624b2c03d69e1d2cd67acdce938 3 | size 1437581 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/09-00-410.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1091e59b0100dc2b047a019c6aae1bd03dfe828735b0265a2936dd4a8f826b18 3 | size 1438431 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/10-00-432.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c9c7d85fba14a8c7d57d08440bebeef1a1bc10137fa2bbd141b84b6eb0861cb 3 | size 1437520 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/11-00-440.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fd5edea01d1491922b0b86939f737b830ffebf0df8665a1c423d9cc18d3b12e 3 | size 1438460 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/12-00-443.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b758f6feee2d6aaf49b93a51f438be04ee494b5a8b84f611154e8efa9d391a6 3 | size 1438219 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/13-00-467.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ea1baea00c6b114a332a3c37a84539cfa7bc094a52e626b76cb85e569a92d99 3 | size 1438141 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/14-00-472.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1dd8c08499166deabc83b348bc6de7ccd764afe8130461eab3eb87d4b605a20 3 | size 1438073 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/15-00-480.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc2bb423538680a8620d81e9f97c3151cf8f63235fe51db9b8114bade40c8086 3 | size 1438180 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/16-00-507.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8acb069f9078a7775f0200b02af4ef2995944ee4f77548b638ae2248f845bd12 3 | size 1437937 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/17-00-506.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4118119d6200ac47de54633f7ccd3cfc51146bc635f87794bab80605f9badb5c 3 | size 1437630 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/18-00-515.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0fa1a15a3f8e867d2c345cd881ec788fe055f9f52cedf34fa46614f995a1e70 3 | size 1439891 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/19-00-546.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc761df3bf6c9029d94d58ac2aad2bd34dfacab8b4c7decd080c6c9978c12ecc 3 | size 1439434 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/20-00-547.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6a4b997aa9f4a16de626a9d244cae67e20e1a8bc6198c840e4e5e20deb8e36a 3 | size 1439011 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/21-00-571.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0b7d98339bc674dd824c5ff01b0b63ec10287f17082173b1125f28a284d47af 3 | size 1438552 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/22-00-578.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33cf2aba9683f3304b6889adcf5daee04f55bf0e024a8cff8c60587c6f4a3102 3 | size 1439076 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/23-00-589.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b7ef80daf3e384935b4a715c2ad8da3a987f63daeaa7a8703e2c26d8f46dee7 3 | size 1436685 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/24-00-606.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40c1250e07f62da6cdc7d0d7be02b0d0543fd31ab4813567cb2ad6d8dcd4e638 3 | size 1437966 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/25-00-618.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b651dc52664bef04afaeea8a979133acb9b50f9ffc65eab6962c9aedf162f2f3 3 | size 1437269 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/26-00-635.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bf0939a394be0636872714a9a0812f1da353bc8058aa4b26a3343f5c6633e951 3 | size 1437568 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/27-00-643.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e11ae9a25b56c9beecb88a12d5b552f15f968bd48ff86a298e5d9851edc8b89a 3 | size 1437307 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/28-00-651.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fee42cb3bf2f4afd60a4f40a5ffd0c54ea493997408145e19f636977d7ff8ef6 3 | size 1437414 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_5/29-00-669.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5ea22316c6d2fc18b706f9af79f5dfc2abe06c143746f818217f418dde94a98 3 | size 759484 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f9a6e042e80348b8761d7ce4d284f1a7fc467358a2bdb6e0bd252c2b96a7c49 3 | size 1438895 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/01-00-282.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fdf64fc0121a38ce8a222f04155e82b13921651c6844ca013b3443f7b71e6fb 3 | size 1439232 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/02-00-327.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cfc092ca109fd9e06a358687626dfebaa6d3c7b9fb3624cabd4966939830008f 3 | size 1438840 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/03-00-327.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82a7659e6df183dc38eaccda6010815682262c49391f2a33269b02a222aae741 3 | size 1439267 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/04-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cbd07ba84dd0245d4ee7804fda173825d95d5b15037c8d8212723de1b9ac5dfc 3 | size 1438654 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/05-00-364.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f35788d8102260c58614477ee140d5490ca10de37b72c8c9bba4eed25de8f36 3 | size 1438909 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/06-00-370.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:080a246ed84d0e3ceafbaa12dfc8c871aaea43a1897af3c2ac396b589087ea6d 3 | size 1439352 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/07-00-378.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c16b1d2c627bd433f07dd3dace2019974c37cf098d839189060b0417af8ca327 3 | size 1439695 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/08-00-378.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8cb16d605192b2a3d4d67623f73816dd8987d54cfd4f70a9953af00b3b0a57aa 3 | size 1439197 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/09-00-402.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:302650456559ce8aa8d79e07573c789831196de37e070b761a7e9ded535e6804 3 | size 1438510 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/10-00-414.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c080399aa0c4fba3a4e14e51226e936eb201ff02211a94e9cea24824be9368a3 3 | size 1438742 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/11-00-421.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b5a8fc91ca6ed966d2da57aaca7186b82ce1c7ae5b552587af77b1115f152c7b 3 | size 1438194 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/12-00-430.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee70ff9943f37513754f9dadce303e2d33adfbfaaad063d8b74df0c862f0aef4 3 | size 1438686 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/13-00-463.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f32609b4d1734560995c1a97f945baf7c8acea19f65403e186dad5bb66d163bf 3 | size 1437005 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/14-00-452.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e797f270b9a059eb55594bcba3603802defa111c915b73dffb9f786f4cf3546 3 | size 1437653 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/15-00-467.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b8295b36c05823ba1137fad61f0149b41d75a948c3623d8547a4d4a892cf973 3 | size 1436249 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/16-00-500.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8906f524e7940ff1e3dc6681c0d60028fba4feaada55dfcf2132a173c2129dc 3 | size 1435544 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/17-00-489.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8eca06e4dc78b4047501739913139fa981f485ede1e2e932655261340ba6522b 3 | size 1435585 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/18-00-507.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3f60b67120dd80f773cb8d20513fabf6f9fc64c87d9ec95e3fd3f58550cc93e 3 | size 1435317 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/19-00-529.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6980ed532c630c0933a820f01be900bc7eb1587849cbf5e83a8c35289e8942a 3 | size 1436059 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/20-00-540.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffc90653b49f28cdd7a88473217a83825f275deb4198d8af74f8dbc3cc7bed77 3 | size 1436431 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/21-00-551.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b0016b98afe8b1e7091262384220862065dd83b2532071f01ba2e93b533fc7f 3 | size 1435741 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/22-00-562.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d65ae8ba73131e1ccf2b4550798219177e5f0954226fb1deca97052b68e4f00 3 | size 1436648 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/23-00-573.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37ec2af35a1af0899c70b2704d2c5c4d100c493b45e1bb4e8a7f782a20130b90 3 | size 1436759 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/24-00-595.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3312643d1f0cfce75c212e96a56f782ed235050881931da6d569d8cbbba43ef 3 | size 1436744 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/25-00-594.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85e0d619aa8b4d51c408878094569c77958261d4e2db432c36c9bbd6d557a904 3 | size 1438100 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/26-00-615.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e8a859844bf029555c033c67569a3474b4d95b0c796d40155562598879d4570 3 | size 1437564 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/27-00-644.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc8931e0cd8af86096e2ca82fdd63afaa2a6dfeaf23d3f70c960a550811ba676 3 | size 1438399 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/28-00-648.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f745560f2c7dc898580b3dc286618b5c0b118477566b8f1dce1330f24e2e794b 3 | size 1437178 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_6/29-00-649.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d9292239410a644c6fb92cb0a6456a40ae0ee347c7b9ccc51bcce283729171c 3 | size 571180 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:985fd154ff16546dc371b8b3793c969f23e188ada6c9c06a80aa5e381622d512 3 | size 1437814 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/01-00-279.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e22b3e37998c2743b3f4da80bfce5feeb75b812e1deb920af5f75580354a2a04 3 | size 1438570 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/02-00-303.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21be54cececbe0b5eedbdad3b28c364790d27850fd5bbca95cee173bc44be4bb 3 | size 1437855 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/03-00-324.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d419042a45088a67c2d62cd6e1850eb24b37f4ad6449be9f54117041074212c 3 | size 1436907 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/04-00-340.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b8d36c8dcf65d666cc96742e01f1acabfdfdb48fd8659201e171e37034e7f2 3 | size 1437664 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/05-00-343.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3e4f8f2974ffa9395f7eae8ed456972c46b9c1a6ce3af0c2832480877c979bf 3 | size 1437758 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/09-00-396.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b96dc1d2874297419719d007efc8ccd37a7735f691a2eec6da6d0529703dd5e 3 | size 1435682 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/10-00-413.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66282164a15650afbac51ff385a23dc071eddc9cc66ebe1bde2d1292206b9139 3 | size 1437395 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/11-00-420.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:612493a37384760b0c934a587ef6f1742fbc38d0a833a6cb54b0c09cebdf073f 3 | size 1437454 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/12-00-436.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebd3764aa6cc06d80ec4ce084189b18bfc7685ea10513a699636dc616c6f97d1 3 | size 1438191 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/13-00-450.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4af3bf6c8c10f7c35334d1fb6db7fb761e9f743b92af041c3ce3abf9d184ada4 3 | size 1437539 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/14-00-454.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2118b2e3b8472e464288d027c0015734a52d5bee8407de8becf48216cb72454 3 | size 1437135 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/15-00-474.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab402c018078b1633a4c72fa4eba0c17ca022114c384be24686c650a1e483fb4 3 | size 1438031 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/16-00-492.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46ecf8a60da74fd6525e6fb32e13603dd5d3de0de392b44333f498b4ce9aa805 3 | size 1436984 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/17-00-482.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e748fdaeec9c2b49a110c41d0d60058a9d5771284805b7812759d25f6efd953 3 | size 1437556 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/18-00-515.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19a3d883383ca2f017a3bcb231a9f42df5443bdc90e320d707befc0dc6ba1b1b 3 | size 1438260 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/19-00-519.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4db0c0881e75b64584352fa03f71c7051e52d1c860d6862953e979c72d186dc6 3 | size 1436985 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/20-00-532.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b2b697e636203980e51707d1e0d373633493d3c53e278b0c87f100e0a6aca68 3 | size 1437111 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/21-00-564.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6700762d0524ecba2f82904ce77d0be2f1c64c13620bae761eb88e39254bf5e 3 | size 1437360 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/22-00-562.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:485119e978bc33f96469bb63566360509d4b0633df7cdda34e5589e5a7bf7644 3 | size 1438234 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/23-00-574.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a5b5c3f565e43b24098a9aae3ea8467394e6ca5d44abe634e07e1ed6e41ff4d 3 | size 1437466 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/24-00-593.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7eff0cf2c3ecf8491184759b55a4b879dc361b1dfbc37a5eab3f81a6963ae339 3 | size 1436910 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/25-00-603.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:310b969095ef4a2ac4e6f7e5fc1813566e61258ff59adc7d18deda42d60f7ffe 3 | size 1437022 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/26-00-614.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b9c2410037521cd195ed7fa33d5ff0a37168dfd21b96353e3265ecab8213cb3 3 | size 1438642 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_7/27-00-632.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0007b109989b6eb718289bcf0a6f1cf887bbc039549f2af29a9ce21d6c55c9ed 3 | size 338091 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b07774f012efd768d51714a06c33c06d9d3c606978f52b6734efdea0ac8e3c3b 3 | size 1438126 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/03-00-333.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d40583d2b08b29aef3a081f7585eb38df55b96b98aab4f87956490673067266 3 | size 1436969 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/04-00-344.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b26d091ead7cd6249b3487df8059fc8257810ae7788889e2bf91689accc1318d 3 | size 1436793 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/05-00-355.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79dbb161eddc7d3d6df4032d0eef89150f8ab8022518375454cad4f25a911c81 3 | size 1438461 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/06-00-370.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d2f6f6ba768fdd0f3b0c664b48fbb7aa25ff957adf715151e67c3032bbe5059 3 | size 1437691 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/07-00-384.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3355db7378ce0ed724475c5a269226c03193dcb44d2001bcbef9bdf7639039e9 3 | size 1437553 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/08-00-392.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:820ba34db4efe065924a3b088137429a9e41c269a137af9c73d5be3dac9c335c 3 | size 1436712 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/09-00-399.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0500aa2a6f004e993b4be7b840612bc92d0b4d03802bc970ac19dbc655193b4 3 | size 1437660 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/10-00-419.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0487815f4bb56ebcc3bf7612ed3f3cf8fd07616ac514bad79cfef2b292ae7788 3 | size 1438090 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/11-00-419.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aeaa3b10fcf5e727b3ec6673271ecd2b17b3e1220c574439b160e922488c8264 3 | size 1436578 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/12-00-449.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5dbce77c2ea8004055acae33c182ed8230400f67189989f9f1115b015fd2406 3 | size 1437518 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/13-00-458.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b101a8e546bbfff937a214b91d978fab467c3d8f499db7c022784fd7e01895ca 3 | size 1436705 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/14-00-460.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0debbaf274f4d6b8587b27c2b053f0b88699962cfa7a223b049d608bf9b7f5c0 3 | size 1438245 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/15-00-480.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2ee87738d9ea9e250f860e68b008a600b4b3f2a9b91c3f20dc7282d933b89e2 3 | size 1437862 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/16-00-499.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4326342bc00465e2ed1e9a2651355882b937d564f39c2cbaad2074b3ea59927d 3 | size 1437228 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/17-00-491.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e588d688cbc4de926d84bc2963542144be62b5e529a801314c90262022ec52ec 3 | size 1438374 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/18-00-506.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e355eefc4cdf2feea59efe3da28e214a524dc62e4217417f2c93f01cae746f2 3 | size 1438168 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/19-00-519.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f61d8cb92c2cb788fcb01a8888df2f3fd60146465a19d2ae722d8011a9ccb8b9 3 | size 1436450 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/20-00-537.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be031fba8c6f60871812fa1f3a16aefc6c7d2078020615404ae5af89df5269bb 3 | size 1437122 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/21-00-566.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e03885dc666617774c12ebfd2ca358ed4055c762cf20dba1ef0661c245015505 3 | size 1438581 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/22-00-556.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ec36bdd8538b5e6728c62164cee385915ecc08b1ec1e16a06b4dd24d7f899c89 3 | size 1438986 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/23-00-574.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f32f96be767810a2594cca4f5809172bc51c30d0bb92d5a9accb17ff096e98a5 3 | size 1439631 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/24-00-604.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bcf8cc512d98c00f9e60de6f95603c2071343db7b3ff4a4f32c00438a29ed98 3 | size 1439013 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/25-00-599.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0415bec969b805929fa43528b94b3d50a8ade1cdaad0a1de82eb0754b3cb211 3 | size 1437161 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/26-00-622.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7412c510af467081c9a251e6edc176e9be9da1348d8b0b7aab13a05d344a3d43 3 | size 1439201 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_8/27-00-648.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:780b199c7a4ce6336e3bf4e359aa30c6e260ce840ead2832aa05f40967f7439c 3 | size 684637 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/00-00-000.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0d37924247e24f152c19639e42c13dd277b1d6abe0cac182079fc646f4d952f 3 | size 1437209 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/01-00-297.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89e92a28ae18b6da7057ecc4f5c375625fea2695e68d5921d297add2fe70513e 3 | size 1437954 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/02-00-303.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4d4fd7e60e10b555153c07dc54b0e298a3271b01b73e6700572b95f5d9fe3f3 3 | size 1436935 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/03-00-318.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa457d0ba88fbe4515dfaee47c844c87eeed66ffee085216f56eb459679a7e90 3 | size 1436616 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/05-00-357.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e3dd3924004d2f0ba40c01eb55c216fc303f4161a535503ed2aff3b65ad6e8f 3 | size 1436092 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/06-00-367.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8fa89971bf0d8660d83310106ff27649cb01f3c8420b18ae4f8f89720f4afdc 3 | size 1437326 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/07-00-379.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa0b4d730d78fee5de1c7006c9b1ddf165b0e26eb480ad25313f3a7aa9b18039 3 | size 1437116 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/08-00-392.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6cdd501a7b1ef3434a5b941a767162332c2ea3c963ea5869e9f23ece3df0e758 3 | size 1437618 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/09-00-403.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f79bbaf49192fc42c3b8806fd0633356c0346e0605fe4b9b4c6df40946124577 3 | size 1437586 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/10-00-423.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bb091248aa5bdc381b488ba738a2b7ca42f5054f0d9bedb6baea5898fc1cf85 3 | size 1436050 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/11-00-431.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9394d9c9d2dd62347cd588cbe9c318ee2b4e566a99dc644048d3e25feb806fd 3 | size 1434142 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/12-00-437.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c44a8bc2f76a5de9ed4bb20faf812dac8463fda7bb98ea2d89c8dfc915f74e 3 | size 1434718 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/13-00-468.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7901632956ca656dd2cbb359557f931a8f3dbaf427684f4f7430c2a427a0b92 3 | size 1435871 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/14-00-459.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be51eff7fe62a331781a3342643e52ed6f3f936e304529da53c62ca6927f5864 3 | size 1435612 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/15-00-476.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd260e42a957ebf1b3fa24aa536ecb9170acb2414734d7d3977ee49e996ba6ea 3 | size 1436162 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/16-00-501.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6172de2060bcf9c5139ea7492fde78f88c9795450bd72cf30ccbcdfc4410001f 3 | size 1434803 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/17-00-493.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba5e6df0727b5453c6a8e1a77fa8afda60a562608a04bd370913a8abed9b02f0 3 | size 1432639 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/18-00-514.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa1d95958e47a271324b47bf288e7880a0ab84b1ade0707ab879b503872e0651 3 | size 1435702 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/19-00-537.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a41910e3a74050c53a44d086e49ff331f2f9dae15ffc01861f9a5ab1f1153d19 3 | size 1435766 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/20-00-546.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b7b8ea0d91529d61a8ce6745e72939d4629bc3a33269794342bf114238942da 3 | size 1437251 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/21-00-564.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:780d6bfd30966f8d474b9f05be4ca5e03255cc435eab088f363641fbf2e0fc4c 3 | size 1436556 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/22-00-577.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd7a2672cd88c9aa61e2cd4d8ba13ffcc6566d53cccf50b39d7ed360ec6d438c 3 | size 1436602 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/23-00-584.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3b15c2f30613b8f0cdaf703306f545a31185925ff320042f84e00d8467c23de 3 | size 1436450 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/24-00-597.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64cda128b9a6112557426cb08b71fb984d669caf6b9894d85d7c942fe10bac75 3 | size 1435206 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/25-00-610.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4aed57e08b9999b53ec5dda50b53651305dbcbb08d45a7dc6c7bf9415060a98d 3 | size 1436028 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/26-00-620.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9408fde81eafce63a1a77b3fe7c12c8370c37d9992a1b75d0901c029ae65fe78 3 | size 1438002 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/27-00-643.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b19dc67547fcd9d0d4f4f617d41efec5839cb2336eae651b3b7c2a05497f3721 3 | size 1434823 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/28-00-653.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bd303fd71ec6aeb320707b547d63f6579e3585af24f09fb7a6945decc611fa3 3 | size 1434930 4 | -------------------------------------------------------------------------------- /Main/Tracked_Poses/Session_9/29-00-658.json: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:22991f8fbb5399d45cbab9678045d201f0a94c018407eeef5f54c97c71e82b1d 3 | size 612251 4 | -------------------------------------------------------------------------------- /readme/figures/image_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/EasyComDataset/91b0ff14d7bc495e984879cf8ef271769c195f4e/readme/figures/image_0.jpg -------------------------------------------------------------------------------- /readme/figures/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/EasyComDataset/91b0ff14d7bc495e984879cf8ef271769c195f4e/readme/figures/image_1.jpg -------------------------------------------------------------------------------- /readme/figures/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/EasyComDataset/91b0ff14d7bc495e984879cf8ef271769c195f4e/readme/figures/image_2.jpg -------------------------------------------------------------------------------- /readme/figures/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/EasyComDataset/91b0ff14d7bc495e984879cf8ef271769c195f4e/readme/figures/image_3.jpg -------------------------------------------------------------------------------- /readme/figures/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/EasyComDataset/91b0ff14d7bc495e984879cf8ef271769c195f4e/readme/figures/image_4.jpg --------------------------------------------------------------------------------